Skip to content

Commit

Permalink
[#177] refactor(PerformanceController): ApiResponse 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonyworld committed Aug 21, 2024
1 parent a5614eb commit e18d450
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ public ResponseEntity<SuccessResponse<PerformanceResponse>> createPerformance(
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "공연 정보 수정 성공"),
@ApiResponse(responseCode = "400", description = "잘못된 요청 - 회차 최대 개수 초과"),
@ApiResponse(responseCode = "400", description = "잘못된 요청 - 티켓 가격은 음수일 수 없습니다."),
@ApiResponse(responseCode = "400", description = "잘못된 요청 - 예매자가 존재하여 가격을 수정할 수 없습니다."),
@ApiResponse(responseCode = "403", description = "권한 없음 - 해당 공연의 소유자가 아님"),
@ApiResponse(responseCode = "404", description = "존재하지 않는 공연 ID"),
@ApiResponse(responseCode = "404", description = "존재하지 않는 회원 ID"),
Expand Down

0 comments on commit e18d450

Please sign in to comment.