From f15f51216e7ea81304597dc57aabf9a8f3bae934 Mon Sep 17 00:00:00 2001 From: DJERY-TOM Date: Tue, 21 Apr 2020 15:04:24 +0100 Subject: [PATCH] + Adding mobilebackendtest routes --- routes/web.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/routes/web.php b/routes/web.php index e06e8de..d4e5013 100644 --- a/routes/web.php +++ b/routes/web.php @@ -31,6 +31,22 @@ }); + /** + * Routes for MobileBackendTest + */ + $router->group(['prefix' => '/mobilebackendtest/interacted' , 'middleware' => 'auth:api'], function () use ($router){ + + $router->post('LoginAction', 'MobileBackendController@action'); + $router->post('BalanceAction', 'MobileBackendController@action'); + $router->post('ConfigAction', 'MobileBackendController@action'); + $router->post('DemandeAction', 'MobileBackendController@action'); + $router->post('MembersAction', 'MobileBackendController@action'); + $router->post('LocationAction', 'MobileBackendController@action'); + $router->post('NetworkAction', 'MobileBackendController@action'); + $router->post('WalletAction', 'MobileBackendController@action'); + + }); + /** * Routes for Wallet Service */ @@ -43,5 +59,6 @@ $router->group(['prefix' => '/wallets'] , function () use ($router){ $router->get('{id_agent}/activated', 'WalletController@get'); $router->get('{id_wallet}', 'WalletController@get'); + $router->post('', 'WalletController@post'); }); });