Add nano service endpoints to pay insurances subscriptions

This commit is contained in:
Djery-Tom 2021-11-05 17:17:19 +01:00
parent 59e5fc45db
commit e09b9a3b68
1 changed files with 1 additions and 0 deletions

View File

@ -208,6 +208,7 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
$router->post('', 'NanoSanteServiceController@post');
// $router->put('{id}/validate', 'NanoSanteServiceController@put');
// $router->put('{id}/reject', 'NanoSanteServiceController@put');
$router->put('{id}/pay', 'NanoSanteServiceController@put');
$router->get('', 'NanoSanteServiceController@get');
$router->put('{id}', 'NanoSanteServiceController@put');
});