nitpikcs
This commit is contained in:
parent
c8c0367663
commit
3dfaa6901c
|
|
@ -49,7 +49,7 @@ return [
|
||||||
* Leave this empty if you want to accepts requests from all hosts.
|
* Leave this empty if you want to accepts requests from all hosts.
|
||||||
*/
|
*/
|
||||||
'allowedOrigins' => [
|
'allowedOrigins' => [
|
||||||
|
//
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -5,5 +5,5 @@ use BeyondCode\LaravelWebSockets\Dashboard\Http\Controllers\SendMessage;
|
||||||
use BeyondCode\LaravelWebSockets\Dashboard\Http\Controllers\ShowDashboard;
|
use BeyondCode\LaravelWebSockets\Dashboard\Http\Controllers\ShowDashboard;
|
||||||
|
|
||||||
Route::get('/', ShowDashboard::class);
|
Route::get('/', ShowDashboard::class);
|
||||||
Route::post('/auth', AuthenticateDashboard::class);
|
Route::post('auth', AuthenticateDashboard::class);
|
||||||
Route::post('/event', SendMessage::class);
|
Route::post('event', SendMessage::class);
|
||||||
Loading…
Reference in New Issue