Skip to content

Commit

Permalink
hotfix: 리퀘스트 응답하기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kmer1024 committed Dec 13, 2024
1 parent 9620f81 commit 7f1f729
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public ApiResponse<RequestInfoResponse> postRequest(@RequestBody PostRequestRequ

@PatchMapping("/{requestId}")
@Operation(summary = "리퀘스트 응답하기", description = "리퀘스트 응답하기 (리퀘스트 응답 모달)")
public ApiResponse<Void> putRequest(@RequestBody PutRequestRequest request, @RequestParam Long requestId) {
public ApiResponse<Void> putRequest(@RequestBody PutRequestRequest request, @PathVariable Long requestId) {
requestService.putRequest(request, requestId);

return ApiResponse.<Void>builder()
Expand Down

0 comments on commit 7f1f729

Please sign in to comment.