From 242c74955d82f3e7ddae2cf4c43ccf973536f894 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Thu, 2 Nov 2023 22:58:56 -0400 Subject: [PATCH] Correct documentation for ApiHeaders.IsTokenAuthentication --- src/Tgstation.Server.Api/ApiHeaders.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Api/ApiHeaders.cs b/src/Tgstation.Server.Api/ApiHeaders.cs index 98f14b91db..498d475eaa 100644 --- a/src/Tgstation.Server.Api/ApiHeaders.cs +++ b/src/Tgstation.Server.Api/ApiHeaders.cs @@ -119,7 +119,7 @@ namespace Tgstation.Server.Api public OAuthProvider? OAuthProvider { get; } /// - /// If the header uses password or TGS JWT authentication. + /// If the header uses OAuth or TGS JWT authentication. /// public bool IsTokenAuthentication => Token != null && !OAuthProvider.HasValue;