Skip to content

Commit

Permalink
[#185] refactor(PerformanceController): 공연 수정 메서드명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonyworld committed Aug 22, 2024
1 parent f9bf267 commit 57a674f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public ResponseEntity<SuccessResponse<PerformanceResponse>> createPerformance(
public ResponseEntity<SuccessResponse<PerformanceModifyResponse>> updatePerformance(
@CurrentMember Long memberId,
@RequestBody PerformanceModifyRequest performanceModifyRequest) {
PerformanceModifyResponse response = performanceModifyService.updatePerformance(memberId, performanceModifyRequest);
PerformanceModifyResponse response = performanceModifyService.modifyPerformance(memberId, performanceModifyRequest);
return ResponseEntity.status(HttpStatus.OK)
.body(SuccessResponse.of(PerformanceSuccessCode.PERFORMANCE_UPDATE_SUCCESS, response));
}
Expand Down

0 comments on commit 57a674f

Please sign in to comment.