Skip to content

Commit

Permalink
Merge pull request #93 from hangeulbada/feat/assignment
Browse files Browse the repository at this point in the history
refactor: student tag removed
  • Loading branch information
yoursin0330 authored Nov 27, 2024
2 parents 1a0f37b + fe60762 commit 7a830fc
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 7a830fc

Please sign in to comment.