diff options
Diffstat (limited to 'routes/channels.php')
-rw-r--r-- | routes/channels.php | 10 |
1 files changed, 7 insertions, 3 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(); }); |