Updated API to use LiteCharms Security
continuous-integration/drone/pr Build is passing

This commit is contained in:
Khwezi Mngoma
2026-06-06 16:26:27 +02:00
parent 90a11dc65e
commit 5d5b59d610
4 changed files with 34 additions and 32 deletions
@@ -1,22 +1,16 @@
namespace LiteCharms.Features.Api.Configuration;
public sealed class AuthentikSettings
public sealed class LiteCharmsSettings
{
public string? Authority { get; set; }
public string? IntrospectionEndpoint { get; set; }
public string? MetadataEndpoint { get; set; }
public string? RevokationEndpoint { get; set; }
public string? ClientId { get; set; }
public string? ClientSecret { get; set; }
public string? Audience { get; set; }
public string? RequiredClaimName { get; set; }
public string? RequiredClaimNameValue { get; set; }
public bool RequireHttpsMetadata { get; set; }
}