Update Qrcode endpoints

This commit is contained in:
Djery-Tom 2022-01-24 11:58:52 +01:00
parent a747562c14
commit 7d0be01d84
1 changed files with 4 additions and 4 deletions

View File

@ -175,6 +175,10 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
});
});
// QRCode for users
$router->get('qrcode/read', 'WalletServiceController@get');
$router->get('qrcode/image', 'WalletServiceController@get');
});
/**
@ -236,8 +240,4 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
$router->get('health-care-sheets/{id}', 'NanoSanteServiceController@get');
$router->put('health-care-sheets/{id}', 'NanoSanteServiceController@put');
//QRCode for agents
$router->get('qrcode/read/{id_user}', 'NanoSanteServiceController@get');
$router->get('qrcode/image/{id_user}', 'NanoSanteServiceController@get');
});