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

@ -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;
}
}