blob: d5c2253e4a8872c3262e4e077174ae1ec36b9a18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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";
}
|