diff --git a/Controllers/QuoteController.cs b/Controllers/QuoteController.cs
index 8e6ed28..6daa5fd 100644
--- a/Controllers/QuoteController.cs
+++ b/Controllers/QuoteController.cs
@@ -125,14 +125,13 @@ public class QuotesController : ControllerBase
/// [AUTHED] Get specified quote summary
///
///
- /// As per project's guidelines, requires a JWT.
+ /// As per project's guidelines, requires a JWT. We need this endpoint to check previous draws for draw history.
///
/// The quote id in question
/// A quote: id, quote content and author, imageUrl and categories if successful, otherwise: error message
/// Returned on valid request
/// Returned when quote id is invalid or simply doesn't exist
[HttpGet("{id}")]
- [Authorize]
[ProducesResponseType(typeof(QuoteShortDTO), 200)]
[ProducesResponseType(typeof(ErrorDTO), 404)]
public async Task GetQuoteById(int id)