Fix QRCode endpoints
This commit is contained in:
parent
83d3c58637
commit
5ad8bb87a1
|
@ -220,11 +220,11 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
|
|||
// Insurances routes
|
||||
$router->group(['prefix' => '/insured'], function () use ($router) {
|
||||
//Search
|
||||
$router->get('search', 'InsuredController@searchInsured');
|
||||
$router->get('', 'NanoSanteServiceController@get');
|
||||
});
|
||||
|
||||
//QRCode for agents
|
||||
$router->get('qrcode/read/{id_user}', 'QRCodeController@read');
|
||||
$router->get('qrcode/image/{id_user}', 'QRCodeController@image');
|
||||
$router->get('qrcode/read/{id_user}', 'NanoSanteServiceController@get');
|
||||
$router->get('qrcode/image/{id_user}', 'NanoSanteServiceController@get');
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue