diff --git a/src/Http/Controllers/AuthenticateConsole.php b/src/Http/Controllers/AuthenticateConsole.php index 2dce0f7..95ed160 100644 --- a/src/Http/Controllers/AuthenticateConsole.php +++ b/src/Http/Controllers/AuthenticateConsole.php @@ -9,6 +9,11 @@ class AuthenticateConsole { public function __invoke(Request $request, Broadcaster $broadcaster) { + /* + * Since the dashboard itself is already secured by the + * Authorize middleware, we can trust all channel + * authentication requests in here. + */ return $broadcaster->validAuthenticationResponse($request, []); } } \ No newline at end of file