Improve NanoSante endpoints
This commit is contained in:
parent
0747488327
commit
ac0ff11b03
|
@ -203,7 +203,7 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
|
||||||
* Routes for NanoSante Service
|
* Routes for NanoSante Service
|
||||||
*/
|
*/
|
||||||
$router->group(['prefix' => '/'.config('services.nano_sante_service.name')], function () use ($router){
|
$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){
|
$router->group(['middleware' => 'auth:api'], function () use ($router){
|
||||||
// Insurances routes
|
// Insurances routes
|
||||||
|
@ -240,6 +240,7 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
|
||||||
$router->get('acts', 'NanoSanteServiceController@get');
|
$router->get('acts', 'NanoSanteServiceController@get');
|
||||||
|
|
||||||
$router->get('health-care-sheets', '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->put('health-care-sheets', 'NanoSanteServiceController@put');
|
||||||
$router->post('health-care-sheets/performances-amount', 'NanoSanteServiceController@post');
|
$router->post('health-care-sheets/performances-amount', 'NanoSanteServiceController@post');
|
||||||
$router->post('health-care-sheets/consultation', 'NanoSanteServiceController@post');
|
$router->post('health-care-sheets/consultation', 'NanoSanteServiceController@post');
|
||||||
|
|
Loading…
Reference in New Issue