Fix twenty-server build

This commit is contained in:
Charles Bochet
2024-02-09 11:14:02 +01:00
parent 7ec968d5a2
commit 3d7b5902e6
4 changed files with 3 additions and 3 deletions

View File

@ -44,6 +44,7 @@
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.3.2",
"@nestjs/core": "^9.0.0",
"@nestjs/event-emitter": "^2.0.3",
"@nestjs/graphql": "patch:@nestjs/graphql@12.0.8#./patches/@nestjs+graphql+12.0.8.patch",
"@nestjs/jwt": "^10.0.3",
"@nestjs/passport": "^9.0.3",

View File

@ -293,6 +293,6 @@ export class EnvironmentService {
}
getApiRateLimitingLimit(): number {
return this.configService.get<number>('API_RATE_LIMITING_LIMIT') ?? 200;
return this.configService.get<number>('API_RATE_LIMITING_LIMIT') ?? 500;
}
}