2
0

AuthenticationSchemes.cs 381 B

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