fix(server): relax the rate limits (#4092)

This commit is contained in:
LongYinan
2023-09-01 13:51:37 +08:00
committed by GitHub
parent 3f21b0b45d
commit 83e7e9db8d
6 changed files with 17 additions and 20 deletions
@@ -44,7 +44,7 @@ export class NextAuthController {
}
@UseGuards(CloudThrottlerGuard)
@Throttle(20, 60)
@Throttle(60, 60)
@All('*')
async auth(
@Req() req: Request,