blob: bac3379e71139786d57f83f2b0ff902b34dcddc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
namespace Jellyfin.Api.Constants
{
/// <summary>
/// Authentication schemes for user authentication in the API.
/// </summary>
public static class AuthenticationSchemes
{
/// <summary>
/// Scheme name for the custom legacy authentication.
/// </summary>
public const string CustomAuthentication = "CustomAuthentication";
}
}
|