Skip to content

Commit

Permalink
relax throttling
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdnbrk committed Dec 26, 2024
1 parent 324f501 commit 97ebb0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
Route::post('/search', SearchController::class)->name('search');

Route::get('/api/chart/pizza-pets', [ChartController::class, 'pizza_pets'])
->middleware('throttle:1,1');
->middleware('throttle:60,1');

Route::get('/api/chart/pizza-ninjas', [ChartController::class, 'pizza_ninjas'])
->middleware('throttle:1,1');
->middleware('throttle:60,1');

0 comments on commit 97ebb0c

Please sign in to comment.