diff --git a/src/Web/Features/Contents/Handlers/ChangeAbout.cs b/src/Web/Features/Contents/Handlers/ChangeAbout.cs index 6098e80..662b4e6 100644 --- a/src/Web/Features/Contents/Handlers/ChangeAbout.cs +++ b/src/Web/Features/Contents/Handlers/ChangeAbout.cs @@ -16,7 +16,7 @@ public class ChangeAboutHandler( public override void Configure() { Post("/api/creators/{CreatorId}/about"); - Options(o => o.WithTags("Contents")); + Options(o => o.WithTags("Creators")); } public override async Task HandleAsync( diff --git a/src/Web/Features/Contents/Handlers/ChangeBanner.cs b/src/Web/Features/Contents/Handlers/ChangeBanner.cs index 9081cb6..b69affb 100644 --- a/src/Web/Features/Contents/Handlers/ChangeBanner.cs +++ b/src/Web/Features/Contents/Handlers/ChangeBanner.cs @@ -18,7 +18,7 @@ public class ChangeBannerHandler( public override void Configure() { Post("/api/creators/{CreatorId}/banner"); - Options(o => o.WithTags("Contents")); + Options(o => o.WithTags("Creators")); AllowFileUploads(); } diff --git a/src/Web/Features/Contents/Handlers/ChangeColors.cs b/src/Web/Features/Contents/Handlers/ChangeColors.cs index 9e2f1c9..25e80f3 100644 --- a/src/Web/Features/Contents/Handlers/ChangeColors.cs +++ b/src/Web/Features/Contents/Handlers/ChangeColors.cs @@ -54,7 +54,7 @@ public class ChangeColorsHandler( public override void Configure() { Post("/api/creators/{CreatorId}/colors"); - Options(o => o.WithTags("Contents")); + Options(o => o.WithTags("Creators")); } public override async Task HandleAsync(ChangeColorsRequest request, CancellationToken ct) diff --git a/src/Web/Features/Contents/Handlers/ChangeLogo.cs b/src/Web/Features/Contents/Handlers/ChangeLogo.cs index 6d4d839..44dd8b8 100644 --- a/src/Web/Features/Contents/Handlers/ChangeLogo.cs +++ b/src/Web/Features/Contents/Handlers/ChangeLogo.cs @@ -18,7 +18,7 @@ public class ChangeLogoHandler( public override void Configure() { Post("/api/creators/{CreatorId}/logo"); - Options(o => o.WithTags("Contents")); + Options(o => o.WithTags("Creators")); AllowFileUploads(); } diff --git a/src/Web/Features/Contents/Handlers/ChangeSocials.cs b/src/Web/Features/Contents/Handlers/ChangeSocials.cs index ab8a5e8..5b86c3e 100644 --- a/src/Web/Features/Contents/Handlers/ChangeSocials.cs +++ b/src/Web/Features/Contents/Handlers/ChangeSocials.cs @@ -22,7 +22,7 @@ public class ChangeSocialsHandler( public override void Configure() { Post("/api/creators/{CreatorId}/socials"); - Options(o => o.WithTags("Contents")); + Options(o => o.WithTags("Creators")); } public override async Task HandleAsync(ChangeSocialsRequest request, CancellationToken ct) diff --git a/src/Web/Features/Contents/Handlers/CreateCreator.cs b/src/Web/Features/Contents/Handlers/CreateCreator.cs index a70bd27..1e3cca2 100644 --- a/src/Web/Features/Contents/Handlers/CreateCreator.cs +++ b/src/Web/Features/Contents/Handlers/CreateCreator.cs @@ -31,7 +31,7 @@ public sealed class CreateCreatorHandler( public override void Configure() { Post("/api/creators"); - Options(o => o.WithTags("Contents")); + Options(o => o.WithTags("Creators")); } public override async Task HandleAsync( diff --git a/src/Web/Features/Contents/Handlers/GetCreatorByAlias.cs b/src/Web/Features/Contents/Handlers/GetCreatorByAlias.cs index 7f72f38..9d7c3f3 100644 --- a/src/Web/Features/Contents/Handlers/GetCreatorByAlias.cs +++ b/src/Web/Features/Contents/Handlers/GetCreatorByAlias.cs @@ -29,7 +29,7 @@ public class GetCreatorByAliasHandler( public override void Configure() { Get("/api/creators/@{Name}"); - Options((o => o.WithTags("Contents"))); + Options((o => o.WithTags("Creators"))); AllowAnonymous(); } diff --git a/src/Web/Features/Contents/Handlers/GetCreatorById.cs b/src/Web/Features/Contents/Handlers/GetCreatorById.cs index ae167e0..d7e630c 100644 --- a/src/Web/Features/Contents/Handlers/GetCreatorById.cs +++ b/src/Web/Features/Contents/Handlers/GetCreatorById.cs @@ -28,7 +28,7 @@ public class GetCreatorByIdHandler( public override void Configure() { Get("/api/creators/{CreatorId}"); - Options((o => o.WithTags("Contents"))); + Options((o => o.WithTags("Creators"))); AllowAnonymous(); } diff --git a/src/Web/Features/Contents/Handlers/GetSubscriptions.cs b/src/Web/Features/Contents/Handlers/GetSubscriptions.cs index 545a469..02c320e 100644 --- a/src/Web/Features/Contents/Handlers/GetSubscriptions.cs +++ b/src/Web/Features/Contents/Handlers/GetSubscriptions.cs @@ -12,7 +12,7 @@ public class GetSubscriptionsHandler( public override void Configure() { Get("/api/subscriptions"); - Options((o => o.WithTags("Creators"))); + Options((o => o.WithTags("Subscriptions"))); } public override async Task HandleAsync( diff --git a/src/Web/Features/Contents/Handlers/SubscribeToCreator.cs b/src/Web/Features/Contents/Handlers/SubscribeToCreator.cs index 50614c7..39352ff 100644 --- a/src/Web/Features/Contents/Handlers/SubscribeToCreator.cs +++ b/src/Web/Features/Contents/Handlers/SubscribeToCreator.cs @@ -18,7 +18,7 @@ public sealed class SubscribeToCreatorHandler( public override void Configure() { Post("/api/creators/{CreatorId}/subscribe"); - Options((o => o.WithTags("Creators"))); + Options((o => o.WithTags("Subscriptions"))); Description(x => x.Accepts("*/*")); } diff --git a/src/Web/Features/Contents/Handlers/UnsubscribeFromCreator.cs b/src/Web/Features/Contents/Handlers/UnsubscribeFromCreator.cs index 3b181fe..69ac37e 100644 --- a/src/Web/Features/Contents/Handlers/UnsubscribeFromCreator.cs +++ b/src/Web/Features/Contents/Handlers/UnsubscribeFromCreator.cs @@ -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("*/*")); }