Skip to content

Commit

Permalink
feat: api에 deprecated 어노테이션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook02 committed Sep 4, 2024
1 parent 599e9a4 commit 80148cc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public ResponseEntity<List<StudyStudentCurriculumResponse>> getStudyCurriculums(
return ResponseEntity.ok(response);
}

@Operation(summary = "이번주 제출해야 할 과제 조회", description = "마감 기한이 이번주까지인 과제를 조회합니다.", deprecated = true)
@Deprecated
@Operation(summary = "이번주 제출해야 할 과제 조회", description = "마감 기한이 이번주까지인 과제를 조회합니다.")
@GetMapping("/assignments/upcoming")
public ResponseEntity<List<AssignmentHistoryStatusResponse>> getUpcomingAssignments(
@RequestParam(name = "studyId") Long studyId) {
Expand Down

0 comments on commit 80148cc

Please sign in to comment.