feat: add JWT authentication requirement to announcements retrieval endpoint.

This commit is contained in:
JakkrapartXD 2026-01-27 14:23:51 +07:00
parent adbaaefc69
commit 52a013f431

View file

@ -26,6 +26,7 @@ export class AnnouncementsController {
* @param limit - / Items per page
*/
@Get()
@Security('jwt')
@SuccessResponse('200', 'Announcements retrieved successfully')
@Response('401', 'Unauthorized')
@Response('403', 'Forbidden')