diff options
Diffstat (limited to 'routes/web.php')
-rw-r--r-- | routes/web.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/web.php b/routes/web.php index 370fbb9..079960e 100644 --- a/routes/web.php +++ b/routes/web.php @@ -10,7 +10,7 @@ | */ Auth::routes(); -Route::middleware('auth', 'throttle:30000') // throttle to 30 per minute +Route::middleware('auth', 'throttle:30') // throttle to 30 per minute ->group(function () { Route::get('/', ['as' => 'writeMessage', 'uses' => 'SocketController@writeMessage']); Route::get('avatar/{user_id}', 'ImageController@getAvatar'); |