Skip to content

Commit

Permalink
refactor: student tag removed
Browse files Browse the repository at this point in the history
  • Loading branch information
yoursin0330 committed Nov 27, 2024
1 parent 64912cf commit fe60762
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,12 @@ public ResponseEntity<WorkbookIdResponseDto> createIncorrectsWorkbook(@Valid @Re
return ResponseEntity.ok(incorrectAnswerService.createIncorrectsWorkbook(principal.getName(),tagRequestDto));
}

@StudentTag
@GetMapping("/group")
@Operation(summary = "오답 그룹", description = "오답 그룹")
public ResponseEntity<IncorrectsGroupDTO> getMyReviewGroup(Principal principal){
return ResponseEntity.ok(incorrectAnswerService.getMyReviewGroup(principal.getName()));
}

@StudentTag
@GetMapping("/group/workbooks")
@Operation(summary = "유저의 모든 오답 문제집", description = "모든 오답 문제집을 조회합니다.")
public ResponseEntity<List<WorkbookDto>> getMyReviewWorkbooks(Principal principal){
Expand Down

0 comments on commit fe60762

Please sign in to comment.