From b4635f026b9d5b139de2519a1dc3964e7b316768 Mon Sep 17 00:00:00 2001 From: Enno Gelhaus Date: Wed, 13 May 2026 17:43:22 +0200 Subject: [PATCH] feat: increase default api rate limit to 90 --- apps/backend/src/app.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/backend/src/app.module.ts b/apps/backend/src/app.module.ts index 7a0be2d0..f3f19ce8 100644 --- a/apps/backend/src/app.module.ts +++ b/apps/backend/src/app.module.ts @@ -36,7 +36,7 @@ import { ioRedis } from '@gitroom/nestjs-libraries/redis/redis.service'; throttlers: [ { ttl: 3600000, - limit: process.env.API_LIMIT ? Number(process.env.API_LIMIT) : 30, + limit: process.env.API_LIMIT ? Number(process.env.API_LIMIT) : 90, }, ], storage: new ThrottlerStorageRedisService(ioRedis),