Add more health care sheets endpoints for NanoSanteService

This commit is contained in:
Djery-Tom 2021-11-25 05:41:07 +01:00
parent 5ad8bb87a1
commit 718bc8d5f2
1 changed files with 8 additions and 0 deletions

View File

@ -223,6 +223,14 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
$router->get('', 'NanoSanteServiceController@get');
});
$router->get('drugs-and-devices', 'NanoSanteServiceController@get');
$router->post('drugs-and-devices', 'NanoSanteServiceController@post');
$router->get('provider-classes', 'NanoSanteServiceController@get');
$router->get('acts', 'NanoSanteServiceController@get');
$router->post('health-care-sheets/consultation', 'NanoSanteServiceController@post');
$router->post('health-care-sheets/execution', 'NanoSanteServiceController@post');
//QRCode for agents
$router->get('qrcode/read/{id_user}', 'NanoSanteServiceController@get');
$router->get('qrcode/image/{id_user}', 'NanoSanteServiceController@get');