From 3c85d7dda16b202cf67da93795e285564d91c6ac Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 15 Sep 2024 13:35:44 -0400 Subject: [PATCH] Remove unused GQL field --- src/Tgstation.Server.Host/GraphQL/Types/UserGroup.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/Tgstation.Server.Host/GraphQL/Types/UserGroup.cs b/src/Tgstation.Server.Host/GraphQL/Types/UserGroup.cs index 325d552b85..b555f203e0 100644 --- a/src/Tgstation.Server.Host/GraphQL/Types/UserGroup.cs +++ b/src/Tgstation.Server.Host/GraphQL/Types/UserGroup.cs @@ -1,10 +1,8 @@ using System; -using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using HotChocolate; -using HotChocolate.Types; using HotChocolate.Types.Relay; using Tgstation.Server.Host.Authority; @@ -52,13 +50,5 @@ namespace Tgstation.Server.Host.GraphQL.Types return (await permissionSetAuthority.InvokeTransformable( authority => authority.GetId(Id, PermissionSetLookupType.GroupId, cancellationToken)))!; } - - /// - /// Gets the s in the . - /// - /// A resulting in a new of s in the . - [UsePaging(IncludeTotalCount = true)] - public List Users() - => throw new NotImplementedException(); } }