mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-05-16 07:17:54 +02:00
27 lines
753 B
C#
Executable File
27 lines
753 B
C#
Executable File
namespace DotBased.AspNet.Authority;
|
|
|
|
public static class AuthorityDefaults
|
|
{
|
|
public static class Scheme
|
|
{
|
|
public static class Cookie
|
|
{
|
|
public const string Default = "Authority.Scheme.Cookie";
|
|
public const string CookieName = "AuthorityAuth";
|
|
}
|
|
|
|
public static class Token
|
|
{
|
|
public const string Default = "Authority.Scheme.Token";
|
|
public const string TokenName = "AuthorityAuthToken";
|
|
}
|
|
}
|
|
|
|
public static class Paths
|
|
{
|
|
public const string Default = "/";
|
|
public const string Login = "/auth/login";
|
|
public const string Logout = "/auth/logout";
|
|
public const string Forbidden = "/forbidden";
|
|
}
|
|
} |