aboutsummaryrefslogtreecommitdiffhomepage
path: root/routes
diff options
context:
space:
mode:
authorMarvin Borner2018-07-13 19:06:45 +0200
committerMarvin Borner2018-07-13 19:06:45 +0200
commit6fcfb7c04d32e1c8b26a312295bf7ac3ec2d2ad7 (patch)
treedbc87ef16fa01d5d99116de283592b8fe5e02944 /routes
parentdfd839f27146df0ad0494e11734fc7d310c70ebf (diff)
Fixed many permissions and began admin interface
Diffstat (limited to 'routes')
-rwxr-xr-x[-rw-r--r--]routes/api.php0
-rwxr-xr-x[-rw-r--r--]routes/channels.php0
-rwxr-xr-x[-rw-r--r--]routes/console.php0
-rwxr-xr-x[-rw-r--r--]routes/keys.php0
-rwxr-xr-x[-rw-r--r--]routes/web.php1
5 files changed, 1 insertions, 0 deletions
diff --git a/routes/api.php b/routes/api.php
index a349a47..a349a47 100644..100755
--- a/routes/api.php
+++ b/routes/api.php
diff --git a/routes/channels.php b/routes/channels.php
index 109904c..109904c 100644..100755
--- a/routes/channels.php
+++ b/routes/channels.php
diff --git a/routes/console.php b/routes/console.php
index 75dd0cd..75dd0cd 100644..100755
--- a/routes/console.php
+++ b/routes/console.php
diff --git a/routes/keys.php b/routes/keys.php
index 52c7b3a..52c7b3a 100644..100755
--- a/routes/keys.php
+++ b/routes/keys.php
diff --git a/routes/web.php b/routes/web.php
index 78dc452..94b01bb 100644..100755
--- a/routes/web.php
+++ b/routes/web.php
@@ -19,6 +19,7 @@ Route::middleware('auth', 'throttle:30') // throttle to 30 per minute
Route::get('/', ['as' => 'writeMessage', 'uses' => 'SocketController@writeMessage']);
Route::get('avatar/{user_id}', 'ImageController@getAvatar');
Route::get('profile', 'UserController@Profile');
+ Route::get('admin', 'AdminController@Overview');
Route::post('avatar', 'UserController@updateAvatar');
Route::post('sendMessage', 'SocketController@sendMessage');