Skip to content

Commit 065b848

Browse files
authored
Merge pull request #50 from DouglasNeuroInformatics/dev
fix: increase throttle limit from 5 to 50
2 parents e7a7ffe + 30d8644 commit 065b848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/auth/auth.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class AuthController {
1616
@HttpCode(HttpStatus.OK)
1717
@Post('login')
1818
@RouteAccess('public')
19-
@Throttle({ long: { limit: 5 } })
19+
@Throttle({ long: { limit: 50 } })
2020
async login(@Body() credentials: LoginCredentialsDto): Promise<LoginResponseBody> {
2121
return this.authService.login(credentials);
2222
}

0 commit comments

Comments
 (0)