aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Constants/AuthenticationSchemes.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2023-01-31 12:18:10 +0100
committerShadowghost <Ghost_of_Stone@web.de>2023-02-02 18:50:33 +0100
commitf5f890e68562e55d4bed16c454c4b4305152b296 (patch)
treeb52e3b45ceb2faa446153866600b4456fed44c8b /Jellyfin.Api/Constants/AuthenticationSchemes.cs
parent58b3945805db4f88bc069ee84013bdf85d7429b1 (diff)
Migrate to file-scoped namespaces
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";
}