Skip to content

Commit

Permalink
🐛 RequestParam -> RequestBody로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywoo27 committed Jan 8, 2024
1 parent eca19af commit e1a5846
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ public CommonResponse<LocalDateTime> payApprove(
return CommonResponse.success(kakaopayService.kakaoPayApprove(approveRequestDto));
}

@GetMapping("/paymentInfo")
CommonResponse<List<PaymentInfoDto>> getPaymentInfo(@RequestParam List<String> orderGroupIds){
@PostMapping("/paymentInfo")
CommonResponse<List<PaymentInfoDto>> getPaymentInfo(@RequestBody List<String> orderGroupIds){
return CommonResponse.success(paymentService.getPaymentInfo(orderGroupIds));
}

Expand Down

0 comments on commit e1a5846

Please sign in to comment.