Skip to content

Commit

Permalink
Increase Throttle Limit to 100 per 60 Second
Browse files Browse the repository at this point in the history
  • Loading branch information
singhalkarun authored Jan 18, 2024
1 parent f8381bc commit 19bfd91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/api.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class ApiController {
};
}

@Throttle(10, 60)
@Throttle(100, 60)
@Get('sendOTP')
@UsePipes(new ValidationPipe({ transform: true }))
async sendOTP(
Expand Down

0 comments on commit 19bfd91

Please sign in to comment.