Skip to content

Commit

Permalink
feat: 사용자 연관 API, 정상 처리시 응답 코드 200으로 일괄 변경(#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
Minjae-An committed May 10, 2024
1 parent b8e63f6 commit 6991c94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions be/src/main/java/yeonba/be/user/controller/UserController.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public ResponseEntity<CustomResponse<UserProfileResponse>> profile(
}

@Operation(summary = "즐겨찾기 등록", description = "다른 사용자를 자신의 즐겨찾기에 등록할 수 있습니다.")
@ApiResponse(responseCode = "202", description = "즐겨찾기 등록 정상 처리")
@ApiResponse(responseCode = "200", description = "즐겨찾기 등록 정상 처리")
@PostMapping("/favorites/{userId}")
public ResponseEntity<CustomResponse<Void>> registerFavorite(
@RequestAttribute("userId") long userId,
Expand All @@ -84,7 +84,7 @@ public ResponseEntity<CustomResponse<Void>> registerFavorite(
}

@Operation(summary = "즐겨찾기 삭제", description = "즐겨찾기에 등록한 사용자를 삭제합니다.")
@ApiResponse(responseCode = "202", description = "즐겨찾기 삭제 정상 처리")
@ApiResponse(responseCode = "200", description = "즐겨찾기 삭제 정상 처리")
@DeleteMapping("/favorites/{userId}")
public ResponseEntity<CustomResponse<Void>> deleteFavorite(
@RequestAttribute("userId") long userId,
Expand All @@ -100,7 +100,7 @@ public ResponseEntity<CustomResponse<Void>> deleteFavorite(


@Operation(summary = "사용자 신고", description = "다른 사용자를 신고할 수 있습니다.")
@ApiResponse(responseCode = "202", description = "신고 정상 처리")
@ApiResponse(responseCode = "200", description = "신고 정상 처리")
@PostMapping("/users/{userId}/report")
public ResponseEntity<CustomResponse<Void>> report(
@RequestAttribute("userId") long userId,
Expand All @@ -119,7 +119,7 @@ public ResponseEntity<CustomResponse<Void>> report(
}

@Operation(summary = "차단하기", description = "다른 사용자를 차단할 수 있습니다.")
@ApiResponse(responseCode = "202", description = "차단 요청 정상 처리")
@ApiResponse(responseCode = "200", description = "차단 요청 정상 처리")
@PostMapping("/users/{userId}/block")
public ResponseEntity<CustomResponse<Void>> block(
@RequestAttribute("userId") long userId,
Expand All @@ -134,7 +134,7 @@ public ResponseEntity<CustomResponse<Void>> block(
}

@Operation(summary = "휴면 해제", description = "사용자 휴면 상태 해제")
@ApiResponse(responseCode = "202", description = "휴면 해제 정상 처리")
@ApiResponse(responseCode = "200", description = "휴면 해제 정상 처리")
@PatchMapping("/users/activate")
public ResponseEntity<CustomResponse<Void>> activateUser(
@RequestAttribute("userId") long userId) {
Expand Down

0 comments on commit 6991c94

Please sign in to comment.