Separate the endpoints by new groups

This commit is contained in:
2024-08-22 12:49:33 -04:00
parent a85a47727e
commit 61b3096db8
11 changed files with 11 additions and 11 deletions

View File

@@ -17,7 +17,7 @@ public class UnsubscribeFromCreatorHandler(
public override void Configure()
{
Post("/api/creators/{CreatorId}/unsubscribe");
Options((o => o.WithTags("Creators")));
Options((o => o.WithTags("Subscriptions")));
Description(x => x.Accepts<string>("*/*"));
}