Skip to content

Commit

Permalink
Merge pull request #345 from NizarBerjawi/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
NizarBerjawi authored Aug 27, 2023
2 parents 4647c96 + 766c7a8 commit c95524f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Providers/RouteServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function boot()
protected function configureRateLimiting()
{
RateLimiter::for('api', function (Request $request) {
return Limit::perMinute(5)->by($request->bearerToken() ?: $request->ip());
return Limit::perMinute(25)->by($request->bearerToken() ?: $request->ip());
});
}
}

0 comments on commit c95524f

Please sign in to comment.