feat: remove admin security from category listing.

This commit is contained in:
JakkrapartXD 2026-01-19 14:11:54 +07:00
parent dec0fc5da0
commit d97569acbc

View file

@ -9,7 +9,6 @@ export class CategoriesController extends Controller {
private categoryService = new CategoryService();
@Get()
@Security('jwt', ['admin'])
@SuccessResponse('200', 'Categories fetched successfully')
@Response('401', 'Invalid or expired token')
public async listCategories(): Promise<listCategoriesResponse> {