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(); } }