From 0275fad5f73ead78311f1b87aba285479103bab2 Mon Sep 17 00:00:00 2001 From: Etienne <45695613+etiennejouan@users.noreply.github.com> Date: Tue, 27 May 2025 14:03:37 +0200 Subject: [PATCH] billing - remove deprecated endpoint (#12315) staging and main env config in stripe updated (prod already updated) --- .../src/engine/core-modules/billing/billing.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-server/src/engine/core-modules/billing/billing.controller.ts b/packages/twenty-server/src/engine/core-modules/billing/billing.controller.ts index c9180efde..2ad6a407b 100644 --- a/packages/twenty-server/src/engine/core-modules/billing/billing.controller.ts +++ b/packages/twenty-server/src/engine/core-modules/billing/billing.controller.ts @@ -46,7 +46,7 @@ export class BillingController { private readonly billingWebhookCustomerService: BillingWebhookCustomerService, ) {} - @Post(['billing/webhooks', 'webhooks/stripe']) + @Post(['webhooks/stripe']) async handleWebhooks( @Headers('stripe-signature') signature: string, @Req() req: RawBodyRequest,