Skip to content

Commit

Permalink
fix: 시스템 단계 조회 박사과정 권한 추가 (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
hynseok authored Nov 3, 2024
1 parent 87c8406 commit 0e5a8b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/phases/phases.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { PositiveIntPipe } from "../../common/pipes/positive-int.pipe";
export class PhasesController {
constructor(private readonly phasesService: PhasesService) {}

@UseUserTypeGuard([UserType.ADMIN, UserType.STUDENT, UserType.PROFESSOR])
@UseUserTypeGuard([UserType.ADMIN, UserType.STUDENT, UserType.PROFESSOR, UserType.PHD])
@Get()
@ApiOperation({ summary: "모든 시스템 단계 일정 조회" })
@ApiOkResponse({
Expand Down

0 comments on commit 0e5a8b5

Please sign in to comment.