From 85c803ee4a6a63fd46b89624169ceeb62fcf694a Mon Sep 17 00:00:00 2001 From: bluehorn07 Date: Thu, 7 Dec 2023 00:57:16 +0900 Subject: [PATCH] remove auth to rc student count --- src/popo/setting/setting.controller.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/popo/setting/setting.controller.ts b/src/popo/setting/setting.controller.ts index a72515f..88e7b5a 100644 --- a/src/popo/setting/setting.controller.ts +++ b/src/popo/setting/setting.controller.ts @@ -58,8 +58,6 @@ export class SettingController { } @Get('count-rc-student-list') - @Roles(UserType.admin, UserType.association) - @UseGuards(JwtAuthGuard, RolesGuard) async countRcStudentList() { return this.settingService.countRcStduentsList(); }