coolify/routes/channels.php

33 lines
828 B
PHP
Raw Normal View History

2023-03-17 15:33:48 +01:00
<?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.
|
*/
2023-12-04 20:47:32 +01:00
use App\Models\Application;
use App\Models\User;
use Illuminate\Support\Facades\Broadcast;
Broadcast::channel('team.{teamId}', function (User $user, int $teamId) {
2023-12-04 20:47:32 +01:00
if ($user->teams->pluck('id')->contains($teamId)) {
return true;
}
2024-06-10 22:43:34 +02:00
2023-12-04 20:47:32 +01:00
return false;
});
Broadcast::channel('user.{userId}', function (User $user) {
if ($user->id === auth()->user()->id) {
return true;
}
2024-06-10 22:43:34 +02:00
return false;
});