+ Update password and banks routes
This commit is contained in:
parent
86a21c20fe
commit
1ec89bc41a
|
@ -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');
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue