2017-09-09 15:32:11 -05:00
|
|
|
<?php
|
2019-02-09 03:36:59 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* channels.php
|
2020-03-17 11:06:30 -05:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org.
|
2019-02-09 03:36:59 -06:00
|
|
|
*
|
2019-10-01 23:45:03 -05:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2019-02-09 03:36:59 -06:00
|
|
|
*
|
2019-10-01 23:45:03 -05: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 03:36:59 -06:00
|
|
|
*
|
2019-10-01 23:45:03 -05:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2019-02-09 03:36:59 -06:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-01 23:45:03 -05:00
|
|
|
* GNU Affero General Public License for more details.
|
2019-02-09 03:36:59 -06:00
|
|
|
*
|
2019-10-01 23:45:03 -05: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 03:36:59 -06:00
|
|
|
*/
|
|
|
|
|
2018-12-31 00:48:23 -06:00
|
|
|
declare(strict_types=1);
|
2019-10-02 00:00:58 -05:00
|
|
|
|
2017-09-09 15:32:11 -05: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 02:05:35 -06:00
|
|
|
Broadcast::channel(
|
2020-03-20 11:31:54 -05:00
|
|
|
'App.User.{id}',
|
|
|
|
static function ($user, $id) {
|
2020-03-18 14:45:45 -05:00
|
|
|
return (int) $user->id === (int) $id;
|
2020-03-17 11:06:30 -05:00
|
|
|
}
|
2017-12-29 02:05:35 -06:00
|
|
|
);
|