From 86a21c20fee94bea6e2ea65bf991bf337fc8aa7a Mon Sep 17 00:00:00 2001 From: Djery-Tom Date: Fri, 16 Oct 2020 08:42:22 +0100 Subject: [PATCH] + Adding the hypervisor and supervisor history routes without pagination --- routes/web.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routes/web.php b/routes/web.php index a992b6d..7b62392 100755 --- a/routes/web.php +++ b/routes/web.php @@ -107,6 +107,9 @@ //Les historiques globals des hyperviseur et superviseur $router->get('hyper_history/{id_network}', 'WalletServiceController@get'); $router->get('super_history/{id_wallet}', 'WalletServiceController@get'); + // Routes sans pagination + $router->get('all_hyper_history/{id_network}', 'WalletServiceController@get'); + $router->get('all_super_history/{id_wallet}', 'WalletServiceController@get'); // Wallets users iLink $router->group(['prefix' => '/users'] , function () use ($router){