WIP PostIt login

This commit is contained in:
Paul Schneider 2026-06-25 00:08:25 +01:00
commit f3a3b63595
13 changed files with 103 additions and 160 deletions

View file

@ -115,12 +115,12 @@ public class YavscApiClientTests
{
Authentication = new AuthenticationSettings
{
Authority = "http://127.0.0.1:1",
Authority = "https://127.0.0.1:5001",
ClientId = "postit-tests",
},
RedirectUri = "http://127.0.0.1:7890/",
RedirectUri = "postit://callback",
Scopes = new[] { "openid" },
ApiUrl = "http://127.0.0.1:1/",
ApiUrl = "https://127.0.0.1:5003/api/v1",
};
var client = new YavscApiClient(settings, new TokenStore(Path.Combine(
Path.GetTempPath(), $"postit-tests-noop-{Guid.NewGuid():N}.json")));