aboutsummaryrefslogtreecommitdiffhomepage
path: root/routes/web.php
diff options
context:
space:
mode:
authorMarvin Borner2018-07-07 13:15:44 +0200
committerMarvin Borner2018-07-07 13:15:44 +0200
commit82fa40442ad56f7de3cb6984bfb187e429476c76 (patch)
tree46f1e8dcf76ba9dd126524db258023fa17e8c923 /routes/web.php
parent3a8cdacbd4522c47766e6679454a7b7cd91bf0bd (diff)
Fixed throttling
Diffstat (limited to 'routes/web.php')
-rw-r--r--routes/web.php2
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');