- Temporally removing security on notifications routes

This commit is contained in:
Djery-Tom 2020-09-29 09:44:12 +01:00
parent e51e010ab7
commit 5f0b4bb81d
1 changed files with 2 additions and 1 deletions

View File

@ -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');
});