+ Update password and banks routes

This commit is contained in:
Djery-Tom 2020-10-27 11:49:36 +01:00
parent 86a21c20fe
commit 1ec89bc41a
1 changed files with 3 additions and 0 deletions

View File

@ -68,6 +68,7 @@
*/
$router->group(['prefix' => '/'.env('WALLET_SERVICE_NAME') ,'middleware' => 'auth:api'], function () use ($router){
// Helper routes
$router->post('update_password', 'WalletServiceController@post');
$router->get('countries','WalletServiceController@get');
$router->get('countries/{dial_code}','WalletServiceController@get');
$router->post('paying_networks','WalletServiceController@post');
@ -114,6 +115,8 @@
// Wallets users iLink
$router->group(['prefix' => '/users'] , function () use ($router){
$router->get('{id_user}', 'WalletServiceController@get');
//Liste des banques
$router->get('banks/{id_wallet_network}', 'WalletServiceController@get');
});
});