From 16b08b839f90ff66f35388dcbacad6eb7989f367 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 17 Aug 2025 17:22:02 -0400 Subject: [PATCH] Fix weird unused using scenario --- .../Authority/IUserAuthority.cs | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/Tgstation.Server.Host/Authority/IUserAuthority.cs b/src/Tgstation.Server.Host/Authority/IUserAuthority.cs index 414823ba1c..2ad5409416 100644 --- a/src/Tgstation.Server.Host/Authority/IUserAuthority.cs +++ b/src/Tgstation.Server.Host/Authority/IUserAuthority.cs @@ -1,7 +1,6 @@ using System.Linq; using System.Threading; -using Tgstation.Server.Api.Models; using Tgstation.Server.Api.Models.Request; using Tgstation.Server.Host.Authority.Core; using Tgstation.Server.Host.Models; @@ -17,7 +16,7 @@ namespace Tgstation.Server.Host.Authority /// Gets the with a given . /// /// The result type after projection. - /// The of the . + /// The of the . /// If the may be returned or will result in a response. /// The for the operation. /// A for . @@ -25,20 +24,20 @@ namespace Tgstation.Server.Host.Authority where TResult : notnull; /// - /// Gets the s for the with a given . + /// Gets the s for the with a given . /// - /// The of the . + /// The of the . /// The for the operation. - /// A of . - RequirementsGated> OAuthConnections(long userId, CancellationToken cancellationToken); + /// A of . + RequirementsGated> OAuthConnections(long userId, CancellationToken cancellationToken); /// - /// Gets the s for the with a given . + /// Gets the s for the with a given . /// - /// The of the . + /// The of the . /// The for the operation. - /// A of . - RequirementsGated> OidcConnections(long userId, CancellationToken cancellationToken); + /// A of . + RequirementsGated> OidcConnections(long userId, CancellationToken cancellationToken); /// /// Gets an of all registered s.