Skip to content

Commit

Permalink
chore: api 수정 404 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
qormoon committed Jun 22, 2024
1 parent a9133bc commit 140eb84
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ public interface AnniversaryApi {
)
@ApiResponse(responseCode = "200", description = "D-Day가 0인 기념일 조회 성공")
@ApiResponse(responseCode = "401", description = "인증 실패")
@ApiResponse(responseCode = "404", description = "기념일 또는 사용자를 찾을 수 없음")
@GetMapping("/member/{id}/anniversary/zero-day")
ResponseEntity<List<AnniversaryResponseDTO>> getZeroDayAnniversaries(@PathVariable Long id);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public interface ImageApi {
)
@ApiResponse(responseCode = "200", description = "프로필 이미지 조회 성공")
@ApiResponse(responseCode = "401", description = "인증 실패")
@ApiResponse(responseCode = "404", description = "사용자를 찾을 수 없음")
@GetMapping("/member/{id}/image")
ResponseEntity<ImageResponseDTO> getImage(@PathVariable Long id);

Expand All @@ -51,7 +50,6 @@ public interface ImageApi {
)
@ApiResponse(responseCode = "204", description = "프로필 이미지 수정 성공")
@ApiResponse(responseCode = "401", description = "인증 실패")
@ApiResponse(responseCode = "404", description = "사용자를 찾을 수 없음")
@PutMapping("/member/{id}/image")
ResponseEntity<Void> updateImage(@PathVariable Long id, @RequestBody ImageRequestDTO imageRequest);
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public interface MemberApi {
)
@ApiResponse(responseCode = "200", description = "멤버 조회 성공")
@ApiResponse(responseCode = "401", description = "인증 실패")
@ApiResponse(responseCode = "404", description = "멤버를 찾을 수 없음")
@GetMapping("/member/{id}")
ResponseEntity<MemberResponseDTO> getMemberById(@PathVariable("id") Long id);
}

0 comments on commit 140eb84

Please sign in to comment.