1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Merge pull request #10090 from turbo124/v5-develop

Fixes for broadcast routes
This commit is contained in:
David Bomba 2024-10-06 18:19:59 +11:00 committed by GitHub
commit 712aca8339
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,7 +23,7 @@ class BroadcastServiceProvider extends ServiceProvider
*/
public function boot()
{
Broadcast::routes();
Broadcast::routes(['middleware' => ['api_db', 'token_auth']]);
require base_path('routes/channels.php');
}