From 5f0b4bb81d85f5166d6e2e420e8066e33a8e34bf Mon Sep 17 00:00:00 2001 From: Djery-Tom Date: Tue, 29 Sep 2020 09:44:12 +0100 Subject: [PATCH] - Temporally removing security on notifications routes --- routes/web.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index f13c346..8367a71 100755 --- a/routes/web.php +++ b/routes/web.php @@ -155,7 +155,8 @@ $router->post('saveAgent', 'NotificationServiceController@post'); }); - $router->group(['prefix'=>'/notifications' , 'middleware' => 'auth:api'], function () use ($router) { +// $router->group(['prefix'=>'/notifications' , 'middleware' => 'auth:api'], function () use ($router) { + $router->group(['prefix'=>'/notifications'], function () use ($router) { $router->post('', 'NotificationServiceController@post'); $router->put('update/{id_notif}', 'NotificationServiceController@put'); });