aboutsummaryrefslogtreecommitdiffhomepage
path: root/routes
diff options
context:
space:
mode:
authorMarvin Borner2018-06-30 23:44:50 +0200
committerMarvin Borner2018-06-30 23:44:50 +0200
commitb1c501e2f239ef6dcbf5e55e403834d793c6a0f6 (patch)
tree4532adc1e40f0da7580132b2a82c67c946a478f3 /routes
parent70233ba2d306019d415b94e270d3a90672236544 (diff)
Finished websocket integration
Diffstat (limited to 'routes')
-rw-r--r--routes/channels.php10
-rw-r--r--routes/web.php8
2 files changed, 13 insertions, 5 deletions
diff --git a/routes/channels.php b/routes/channels.php
index f16a20b..109904c 100644
--- a/routes/channels.php
+++ b/routes/channels.php
@@ -9,8 +9,12 @@
| application supports. The given channel authorization callbacks are
| used to check if an authenticated user can listen to the channel.
|
-*/
+ */
-Broadcast::channel('App.User.{id}', function ($user, $id) {
- return (int) $user->id === (int) $id;
+// Broadcast::channel('App.User.{id}', function ($user, $id) {
+// return (int) $user->id === (int) $id;
+// });
+
+Broadcast::channel('chat', function ($user) {
+ return Auth::check();
});
diff --git a/routes/web.php b/routes/web.php
index 810aa34..7c0500f 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -1,5 +1,4 @@
<?php
-
/*
|--------------------------------------------------------------------------
| Web Routes
@@ -10,7 +9,12 @@
| contains the "web" middleware group. Now create something great!
|
*/
-
Route::get('/', function () {
return view('welcome');
});
+
+Auth::routes();
+Route::group(['middleware' => ['auth']], function() {
+ Route::get('writeMessage', ['as'=>'writeMessage','uses'=>'SocketController@writeMessage']);
+ Route::post('sendMessage', 'SocketController@sendMessage');
+}); \ No newline at end of file