This commit is contained in:
Marcel Pociot 2018-11-25 22:35:34 +01:00
parent f73883151d
commit 6a584c42c0
1 changed files with 5 additions and 0 deletions

View File

@ -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, []);
}
}