Skip to content

Commit

Permalink
Merge pull request #113 from Hanaemong/nayoung
Browse files Browse the repository at this point in the history
Fix: 지출 api get -> post 변경
  • Loading branch information
ny2060 authored Jul 8, 2024
2 parents f6c0549 + 11bd61b commit 12fac3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public SuccessResponse<Long> createTransaction(@PathVariable("teamId") Long team


/*지출하기*/
@GetMapping("/transaction/expense/{teamId}")
@PostMapping("/transaction/expense/{teamId}")
public SuccessResponse<PaymentCardResponse> payMeetingAccount(@PathVariable("teamId") Long teamId, @AuthenticationPrincipal MemberDetails member) {
return SuccessResponse.success(transactionService.paymentCard(member,teamId));
}
Expand Down

0 comments on commit 12fac3b

Please sign in to comment.