aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Constants/AuthenticationSchemes.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Api/Constants/AuthenticationSchemes.cs')
-rw-r--r--Jellyfin.Api/Constants/AuthenticationSchemes.cs17
1 files changed, 8 insertions, 9 deletions
diff --git a/Jellyfin.Api/Constants/AuthenticationSchemes.cs b/Jellyfin.Api/Constants/AuthenticationSchemes.cs
index bac3379e7..d5c2253e4 100644
--- a/Jellyfin.Api/Constants/AuthenticationSchemes.cs
+++ b/Jellyfin.Api/Constants/AuthenticationSchemes.cs
@@ -1,13 +1,12 @@
-namespace Jellyfin.Api.Constants
+namespace Jellyfin.Api.Constants;
+
+/// <summary>
+/// Authentication schemes for user authentication in the API.
+/// </summary>
+public static class AuthenticationSchemes
{
/// <summary>
- /// Authentication schemes for user authentication in the API.
+ /// Scheme name for the custom legacy authentication.
/// </summary>
- public static class AuthenticationSchemes
- {
- /// <summary>
- /// Scheme name for the custom legacy authentication.
- /// </summary>
- public const string CustomAuthentication = "CustomAuthentication";
- }
+ public const string CustomAuthentication = "CustomAuthentication";
}