Clairify what these tags are for

This commit is contained in:
Jordan Dominion
2025-08-17 18:08:10 -04:00
parent d4e0500cb2
commit 3e5ade9f6b
2 changed files with 2 additions and 2 deletions
@@ -166,7 +166,7 @@ namespace Tgstation.Server.Host.Authority.Core
var authorityResponse = await projectable.Resolve(
queryable => queryable
.Select(transformer.ProjectedExpression)
.TagWith("REST Projections"));
.TagWith("REST Projections Applied"));
var erroredResult = CreateErroredActionResult(controller, authorityResponse);
if (erroredResult != null)
return erroredResult;
@@ -75,7 +75,7 @@ namespace Tgstation.Server.Host.Extensions
if (modified)
queryable = queryable
.TagWith("GraphQL Projections");
.TagWith("GraphQL Projections Applied");
return queryable;
}