add customer_account_type route

This commit is contained in:
root 2026-02-02 10:36:06 +01:00
parent 39ad0665de
commit fa7c3707ec
1 changed files with 2 additions and 0 deletions

View File

@ -124,6 +124,8 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
$router->post('link_bank_account', 'WalletServiceController@post');
//Creation d'un compte bancaire (Agency Banking)
$router->post('create_user_bank_account', 'WalletServiceController@post');
$router->post('activate_user_bank_account', 'WalletServiceController@post');
$router->get('customer_account_type', 'WalletServiceController@get');
});
});