From ac0ff11b03b34b871f16919e428524f7e97f56af Mon Sep 17 00:00:00 2001 From: Djery-Tom Date: Mon, 21 Feb 2022 15:18:36 +0100 Subject: [PATCH] Improve NanoSante endpoints --- routes/web.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index cf37cd3..3971805 100755 --- a/routes/web.php +++ b/routes/web.php @@ -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');