Added oauth2 access endpoint override option

This commit is contained in:
2025-04-14 22:36:37 +02:00
parent f56f592c4c
commit 0b0c9304b1
2 changed files with 17 additions and 9 deletions

View File

@@ -41,6 +41,7 @@ public class AppConfiguration
public string ClientId { get; set; } = Formatter.GenerateString(8);
public string ClientSecret { get; set; } = Formatter.GenerateString(32);
public string? AuthorizationEndpoint { get; set; }
public string? AccessEndpoint { get; set; }
public string? AuthorizationRedirect { get; set; }
}
}