From 30acc6676a6c9db3911f62d8d19e46f9da4aa92c Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Sat, 8 Mar 2025 19:08:02 +0000 Subject: [PATCH] exclude billing webhook endpoint --- apps/server/src/core/core.module.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/server/src/core/core.module.ts b/apps/server/src/core/core.module.ts index a47a7b60..182a1420 100644 --- a/apps/server/src/core/core.module.ts +++ b/apps/server/src/core/core.module.ts @@ -38,6 +38,7 @@ export class CoreModule implements NestModule { { path: 'auth/setup', method: RequestMethod.POST }, { path: 'health', method: RequestMethod.GET }, { path: 'health/live', method: RequestMethod.GET }, + { path: 'billing/stripe/webhook', method: RequestMethod.POST }, ) .forRoutes('*'); }