From 6a584c42c05de1efaaef6e156d46e8d31b533469 Mon Sep 17 00:00:00 2001 From: Marcel Pociot Date: Sun, 25 Nov 2018 22:35:34 +0100 Subject: [PATCH] wip --- src/Http/Controllers/AuthenticateConsole.php | 5 +++++ 1 file changed, 5 insertions(+) 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