From 6a40bd062a99d1493529a1e43ea0a39860214e5c Mon Sep 17 00:00:00 2001 From: George Vlahavas Date: Thu, 18 Mar 2021 16:53:44 +0200 Subject: [PATCH] Comment out keycloak authentication for now --- api/routes/api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/routes/api.php b/api/routes/api.php index e4ba419..c5a864a 100644 --- a/api/routes/api.php +++ b/api/routes/api.php @@ -13,7 +13,7 @@ use Illuminate\Support\Facades\Route; | */ -Route::group(['middleware' => 'auth:api'], function () { +//Route::group(['middleware' => 'auth:api'], function () { Route::get('capec', 'CapecController@index'); Route::group(['prefix' => 'v1'], function () { @@ -46,4 +46,4 @@ Route::group(['middleware' => 'auth:api'], function () { }); }); -}); +//}); -- 2.2.2