diff options
author | Marvin Borner | 2018-07-07 13:15:44 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-07 13:15:44 +0200 |
commit | 82fa40442ad56f7de3cb6984bfb187e429476c76 (patch) | |
tree | 46f1e8dcf76ba9dd126524db258023fa17e8c923 /routes/web.php | |
parent | 3a8cdacbd4522c47766e6679454a7b7cd91bf0bd (diff) |
Fixed throttling
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'); |