2017-09-09 22:32:11 +02:00
|
|
|
<?php
|
2019-02-09 10:36:59 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* channels.php
|
2020-03-17 16:06:30 +00:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org.
|
2019-02-09 10:36:59 +01:00
|
|
|
*
|
2019-10-02 06:45:03 +02:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2019-02-09 10:36:59 +01:00
|
|
|
*
|
2019-10-02 06:45:03 +02:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2019-02-09 10:36:59 +01:00
|
|
|
*
|
2019-10-02 06:45:03 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2019-02-09 10:36:59 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-02 06:45:03 +02:00
|
|
|
* GNU Affero General Public License for more details.
|
2019-02-09 10:36:59 +01:00
|
|
|
*
|
2019-10-02 06:45:03 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-02-09 10:36:59 +01:00
|
|
|
*/
|
|
|
|
|
2018-12-31 07:48:23 +01:00
|
|
|
declare(strict_types=1);
|
2019-10-02 07:00:58 +02:00
|
|
|
|
2025-05-24 17:15:46 +02:00
|
|
|
use Illuminate\Support\Facades\Broadcast;
|
2025-05-25 06:36:22 +02:00
|
|
|
|
2017-09-09 22:32:11 +02:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| 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.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2017-12-29 09:05:35 +01:00
|
|
|
Broadcast::channel(
|
2020-03-20 17:31:54 +01:00
|
|
|
'App.User.{id}',
|
2025-05-04 13:55:42 +02:00
|
|
|
static fn ($user, $id) => (int)$user->id === (int)$id
|
2017-12-29 09:05:35 +01:00
|
|
|
);
|