jellyfin/Jellyfin.Api/Constants/AuthenticationSchemes.cs

13 lines
339 B
C#
Raw Normal View History

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