From 2a236bc4e2e24ce75d76d2028203cece04f8cc0e Mon Sep 17 00:00:00 2001 From: Artem Niehrieiev Date: Fri, 29 Aug 2025 09:50:16 +0000 Subject: [PATCH] feat: set separate throttling --- backend/src/app.module.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/app.module.ts b/backend/src/app.module.ts index f1f7de493..31f25df6d 100644 --- a/backend/src/app.module.ts +++ b/backend/src/app.module.ts @@ -45,10 +45,9 @@ import { ThrottlerModule, ThrottlerGuard } from '@nestjs/throttler'; throttlers: [ { ttl: 60000, - limit: 10, + limit: 200, }, ], - skipIf: () => true, }), ConnectionModule, ConnectionPropertiesModule,