From a5eb6d60433eeb6d15f4ac81c853898050807354 Mon Sep 17 00:00:00 2001 From: Djery-Tom Date: Wed, 20 Oct 2021 13:30:57 +0100 Subject: [PATCH] + Fix NanoSanteService endpoints --- app/Services/NanoSanteService.php | 4 ++-- routes/web.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Services/NanoSanteService.php b/app/Services/NanoSanteService.php index f14e4c7..d57f195 100755 --- a/app/Services/NanoSanteService.php +++ b/app/Services/NanoSanteService.php @@ -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) diff --git a/routes/web.php b/routes/web.php index 255cd62..54dcf45 100755 --- a/routes/web.php +++ b/routes/web.php @@ -206,4 +206,4 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding'); $router->post('subscribe', 'NanoSanteServiceController@post'); }); -}); + });