From f9734c417a8c911eb6937abd5cedcc41749dbb77 Mon Sep 17 00:00:00 2001 From: isra el Date: Mon, 24 Feb 2025 00:11:40 +0300 Subject: [PATCH] chore(api): raise api throttling limit --- api/src/app.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/app.module.ts b/api/src/app.module.ts index 06b78ce..9c37f09 100644 --- a/api/src/app.module.ts +++ b/api/src/app.module.ts @@ -16,7 +16,7 @@ import { BillingModule } from './billing/billing.module'; ThrottlerModule.forRoot([ { ttl: 60000, - limit: 30, + limit: 60, }, ]), ScheduleModule.forRoot(),