Improve NanoSante endpoints

This commit is contained in:
Djery-Tom 2022-02-21 15:18:36 +01:00
parent 0747488327
commit ac0ff11b03
1 changed files with 2 additions and 1 deletions

View File

@ -203,7 +203,7 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
* Routes for NanoSante Service
*/
$router->group(['prefix' => '/'.config('services.nano_sante_service.name')], function () use ($router){
$router->get('pdf-viewer', 'NanoSanteServiceController@getOriginal');
// $router->get('pdf-viewer', 'NanoSanteServiceController@getOriginal');
$router->group(['middleware' => 'auth:api'], function () use ($router){
// Insurances routes
@ -240,6 +240,7 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
$router->get('acts', 'NanoSanteServiceController@get');
$router->get('health-care-sheets', 'NanoSanteServiceController@get');
$router->post('health-care-sheets/check-insurance-coverage-amount', 'NanoSanteServiceController@post');
$router->put('health-care-sheets', 'NanoSanteServiceController@put');
$router->post('health-care-sheets/performances-amount', 'NanoSanteServiceController@post');
$router->post('health-care-sheets/consultation', 'NanoSanteServiceController@post');