AuthenticationSchemes.cs 339 B

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