jellyfin/Jellyfin.Api/Constants/AuthenticationSchemes.cs

13 lines
339 B
C#
Raw Normal View History

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