mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
25 lines
530 B
PHP
25 lines
530 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Support\Facades\Broadcast;
|
|
|
|
class BroadcastServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
Broadcast::routes();
|
|
|
|
/*
|
|
* Authenticate the user's personal channel...
|
|
*/
|
|
Broadcast::channel('App.User.*', function ($user, $userId) {
|
|
return (int) $user->id === (int) $userId;
|
|
});
|
|
}
|
|
}
|