+ Fix NanoSanteService endpoints

This commit is contained in:
Djery-Tom 2021-10-20 13:30:57 +01:00
parent 0926502f97
commit a5eb6d6043
2 changed files with 3 additions and 3 deletions

View File

@ -20,8 +20,8 @@ class NanoSanteService
public function __construct()
{
$this->baseUri = config('services.wallet_service.base_uri');
$this->key = config('services.wallet_service.key');
$this->baseUri = config('services.nano_sante_service.base_uri');
$this->key = config('services.nano_sante_service.key');
}
public function post($uri , $data, $headers)

View File

@ -206,4 +206,4 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
$router->post('subscribe', 'NanoSanteServiceController@post');
});
});
});