diff --git a/Controllers/CategoryController.cs b/Controllers/CategoryController.cs
index a4735e3..b9ce66d 100644
--- a/Controllers/CategoryController.cs
+++ b/Controllers/CategoryController.cs
@@ -80,17 +80,18 @@ public class CategoryController : ControllerBase
// GET /api/v1/categories
///
- /// [AUTHED] Get every category
+ /// Get every category
///
///
- /// Can (and will) return an empty list if no categories are found in DB.
- /// Unlike GET /api/v1/categories/page/..., requires authorization with a JWT.
+ /// Can (and will) return an empty list if no categories are found in DB.
+ /// Unlike GET /api/v1/categories/page/..., requires authorization with a JWT.
+ /// Not the case anymore, as choosing a quote from a category requires the user to know
+ /// of existing categories.
/// Has CORS set.
///
/// Returned on valid request
// /// Returned when there are no categories to list
[HttpGet]
- [Authorize]
[EnableCors]
[ProducesResponseType(typeof(List), 200)]
public async Task GetQuotePage()