*
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -71,7 +71,7 @@ class RouteServiceProvider extends ServiceProvider | ... | @@ -71,7 +71,7 @@ class RouteServiceProvider extends ServiceProvider | 
| 71 | protected function configureRateLimiting() | 71 | protected function configureRateLimiting() | 
| 72 | { | 72 | { | 
| 73 | RateLimiter::for('api', function (Request $request) { | 73 | RateLimiter::for('api', function (Request $request) { | 
| 74 | return Limit::perMinute(1000)->by(optional($request->user())->id ?: $request->ip()); | 74 | return Limit::perMinute(500)->by(optional($request->user())->id ?: $request->ip()); | 
| 75 | }); | 75 | }); | 
| 76 | } | 76 | } | 
| 77 | } | 77 | } | ... | ... | 
- 
Please register or sign in to post a comment