From 3dfaa6901cafc1954bbbd68fd446af28cbf3d00c Mon Sep 17 00:00:00 2001 From: freek Date: Mon, 26 Nov 2018 23:03:13 +0100 Subject: [PATCH] nitpikcs --- config/websockets.php | 2 +- src/Dashboard/Http/routes.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/websockets.php b/config/websockets.php index 877bb77..4cfdb49 100644 --- a/config/websockets.php +++ b/config/websockets.php @@ -49,7 +49,7 @@ return [ * Leave this empty if you want to accepts requests from all hosts. */ 'allowedOrigins' => [ - + // ], /* diff --git a/src/Dashboard/Http/routes.php b/src/Dashboard/Http/routes.php index bc5729c..99d0f6f 100644 --- a/src/Dashboard/Http/routes.php +++ b/src/Dashboard/Http/routes.php @@ -5,5 +5,5 @@ use BeyondCode\LaravelWebSockets\Dashboard\Http\Controllers\SendMessage; use BeyondCode\LaravelWebSockets\Dashboard\Http\Controllers\ShowDashboard; Route::get('/', ShowDashboard::class); -Route::post('/auth', AuthenticateDashboard::class); -Route::post('/event', SendMessage::class); \ No newline at end of file +Route::post('auth', AuthenticateDashboard::class); +Route::post('event', SendMessage::class); \ No newline at end of file