Skip to content

Commit

Permalink
Merge pull request #82 from Donut-DONationUTile/issue/wallet
Browse files Browse the repository at this point in the history
fix: @RequestBody 제거
  • Loading branch information
Ganghee-Lee-0522 authored Apr 30, 2024
2 parents 58b7a05 + 6bbefd0 commit a580d26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public ApiResponse<?> walletDetail(@PathVariable Long giftId) {
}

@PostMapping
public ApiResponse<?> walletUpload(@RequestBody WalletUploadRequestDto requestDto) throws IOException {
public ApiResponse<?> walletUpload(WalletUploadRequestDto requestDto) throws IOException {
return walletService.walletUpload(requestDto);
}
}

0 comments on commit a580d26

Please sign in to comment.