Skip to content

Commit

Permalink
chore: Remove idempotency from bodyDto
Browse files Browse the repository at this point in the history
  • Loading branch information
sashko9807 committed Dec 10, 2024
1 parent ef268fd commit c4cf9a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/api/src/stripe/stripe.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export class StripeController {

@Post('setup-intent')
@Public()
createSetupIntent(@Body() body: { idempotencyKey: string }) {
return this.stripeService.createSetupIntent(body)
createSetupIntent() {
return this.stripeService.createSetupIntent()
}

@Post('create-checkout-session')
Expand Down

0 comments on commit c4cf9a6

Please sign in to comment.