Rename queryable endpoints for users and groups

This commit is contained in:
Jordan Dominion
2025-08-17 17:16:46 -04:00
parent 4be167292e
commit e8f1d52f8f
2 changed files with 2 additions and 2 deletions
@@ -62,7 +62,7 @@ namespace Tgstation.Server.Host.GraphQL.Types
[UseFiltering]
[UseSorting]
[Cost(Costs.NonIndexedQueryable)]
public async ValueTask<IQueryable<UserGroup>> QueryableGroups(
public async ValueTask<IQueryable<UserGroup>> Queryable(
[Service] IGraphQLAuthorityInvoker<IUserGroupAuthority> userGroupAuthority)
{
ArgumentNullException.ThrowIfNull(userGroupAuthority);
@@ -88,7 +88,7 @@ namespace Tgstation.Server.Host.GraphQL.Types
[UseProjection]
[UseFiltering]
[UseSorting]
public async ValueTask<IQueryable<User>> QueryableUsers(
public async ValueTask<IQueryable<User>> Queryable(
[Service] IGraphQLAuthorityInvoker<IUserAuthority> userAuthority)
{
ArgumentNullException.ThrowIfNull(userAuthority);