34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Broadcast Channels
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may register all of the event broadcasting channels that your
|
|
| application supports. The given channel authorization callbacks are
|
|
| used to check if an authenticated user can listen to the channel.
|
|
|
|
|
*/
|
|
|
|
use App\Models\User;
|
|
|
|
Broadcast::channel('tasks.{userId}', static function (User $user, $userId) {
|
|
return (int)$user->id === (int)$userId;
|
|
});
|
|
|
|
Broadcast::channel('projects.{userId}', static function (User $user, $userId) {
|
|
return (int)$user->id === (int)$userId;
|
|
});
|
|
|
|
Broadcast::channel('gantt.{userId}', static function (User $user, $userId) {
|
|
return (int)$user->id === (int)$userId;
|
|
});
|
|
|
|
Broadcast::channel('intervals.{userId}', static function (User $user, $userId) {
|
|
return (int)$user->id === (int)$userId;
|
|
});
|
|
Broadcast::channel('tasks_activities.{userId}', static function (User $user, $userId) {
|
|
return (int)$user->id === (int)$userId;
|
|
});
|