Authentication finally moved to the dotnet way in webapi, ready to be added to to deal with users and such
Introspection access point properly uses basic auth of client id and secret to access
This commit is contained in:
@@ -7,7 +7,9 @@ namespace WebAPI.Data
|
||||
{
|
||||
public static string PterodactylAPIKey { get; private set; }
|
||||
public static string PterodactylPanelURL { get; private set; }
|
||||
public static string OIDCUserInfoEndpoint { get; private set; }
|
||||
public static string OIDCIntrospectionEndpoint { get; private set; }
|
||||
public static string OIDCClientId { get; private set; }
|
||||
public static string OIDCClientSecret { get; set; }
|
||||
public static void Init(IConfiguration configuration)
|
||||
{
|
||||
var fields = typeof(AppSettings).GetProperties();
|
||||
|
||||
Reference in New Issue
Block a user