2023-01-31 11:18:10 +00:00
|
|
|
namespace Jellyfin.Api.Constants;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Authentication schemes for user authentication in the API.
|
|
|
|
/// </summary>
|
|
|
|
public static class AuthenticationSchemes
|
2019-11-24 18:25:46 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
/// Scheme name for the custom legacy authentication.
|
2019-11-24 18:25:46 +00:00
|
|
|
/// </summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
public const string CustomAuthentication = "CustomAuthentication";
|
2019-11-24 18:25:46 +00:00
|
|
|
}
|