diff --git a/server/AyaNova/Controllers/TagController.cs b/server/AyaNova/Controllers/TagController.cs
index 7f1578b9..ac3a265d 100644
--- a/server/AyaNova/Controllers/TagController.cs
+++ b/server/AyaNova/Controllers/TagController.cs
@@ -75,9 +75,9 @@ namespace AyaNova.Api.Controllers
///
/// Bulk add tags to list of object id's specified
///
- /// Required
- /// Required
- /// Required
+ ///
+ ///
+ ///
/// Number of items affected
[HttpPost("bulk-add/{ayaType}/{tag}")]
public async Task BulkAdd([FromRoute] AyaType ayaType, [FromRoute] string tag, [FromBody] List idList)
@@ -94,8 +94,8 @@ namespace AyaNova.Api.Controllers
///
/// Bulk add tags to all objects of type specified
///
- /// Required
- /// Required
+ ///
+ ///
/// Number of items affected
[HttpPost("bulk-add-any/{ayaType}/{tag}")]
public async Task BulkAddAny([FromRoute] AyaType ayaType, [FromRoute] string tag)
@@ -112,9 +112,9 @@ namespace AyaNova.Api.Controllers
///
/// Bulk remove tags to list of object id's specified
///
- /// Required
- /// Required
- /// Required
+ ///
+ ///
+ ///
/// Number of items affected
[HttpPost("bulk-remove/{ayaType}/{tag}")]
public async Task BulkRemove([FromRoute] AyaType ayaType, [FromRoute] string tag, [FromBody] List idList)
@@ -131,8 +131,8 @@ namespace AyaNova.Api.Controllers
///
/// Bulk remove tags to all objects of type specified
///
- /// Required
- /// Required
+ ///
+ ///
/// Number of items affected
[HttpPost("bulk-remove-any/{ayaType}/{tag}")]
public async Task BulkRemoveAny([FromRoute] AyaType ayaType, [FromRoute] string tag)
@@ -149,10 +149,10 @@ namespace AyaNova.Api.Controllers
///
/// Bulk replace tags to list of object id's specified
///
- /// Required
- /// Required
- /// Required
- /// Required
+ ///
+ ///
+ ///
+ ///
/// Number of items affected
[HttpPost("bulk-replace/{ayaType}/{tag}")]
public async Task BulkReplace([FromRoute] AyaType ayaType, [FromRoute] string fromTag, [FromQuery] string toTag, [FromBody] List idList)
@@ -169,9 +169,9 @@ namespace AyaNova.Api.Controllers
///
/// Bulk replace tags to all objects of type specified
///
- /// Required
- /// Required
- /// Required
+ ///
+ ///
+ ///
/// Number of items affected
[HttpPost("bulk-replace-any/{ayaType}/{tag}")]
public async Task BulkReplaceAny([FromRoute] AyaType ayaType, [FromRoute] string fromTag, [FromQuery] string toTag)