11 lines
419 B
C#
11 lines
419 B
C#
namespace MxGateway.Server.Dashboard;
|
|
|
|
public static class DashboardAuthenticationDefaults
|
|
{
|
|
public const string AuthenticationScheme = "MxGateway.Dashboard";
|
|
public const string AuthorizationPolicy = "MxGateway.Dashboard";
|
|
public const string ScopeClaimType = "scope";
|
|
public const string KeyPrefixClaimType = "mxgateway:key_prefix";
|
|
public const string CookieName = "__Host-MxGatewayDashboard";
|
|
}
|