walletservice/routes/web.php

47 lines
1.6 KiB
PHP
Raw Normal View History

2020-04-15 23:08:09 +00:00
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It is a breeze. Simply tell Lumen the URIs it should respond to
| and give it the Closure to call when that URI is requested.
|
*/
//$router->get('/', function () use ($router) {
// return $router->app->version();
//});
2020-04-25 11:41:40 +00:00
// Transactions routes
$router->group(['prefix' => '/transactions'] , function () use ($router){
$router->post('','TransactionController@add');
$router->get('{id_wallet}','TransactionController@lastTransactions');
2020-05-02 14:43:28 +00:00
$router->post('commission','TransactionController@calculateCommission');
2020-04-25 11:41:40 +00:00
});
// Credits routes
$router->group(['prefix' => '/credits'] , function () use ($router){
$router->put('treatDemand/{id_demand}','CreditController@treatDemand');
$router->put('cancelDemand/{id_demand}','CreditController@cancelDemand');
2020-04-25 11:41:40 +00:00
});
$router->put('/virement/{id_wallet}','CommissionController@virement');
2020-04-15 23:08:09 +00:00
// Wallets routes
$router->group(['prefix' => '/wallets'] , function () use ($router){
$router->get('{id_agent}/activated', 'WalletController@activated');
$router->get('{id_wallet}', 'WalletController@show');
2020-04-21 14:07:57 +00:00
$router->post('', 'WalletController@create');
2020-06-01 18:31:25 +00:00
// Wallets users iLink
$router->group(['prefix' => '/users'] , function () use ($router){
$router->get('{id_user}', 'WalletController@showWalletUser');
});
2020-04-15 23:08:09 +00:00
});
2020-06-01 18:31:25 +00:00
$router->get('mail','CommissionController@sendMail');
$router->post('file','CommissionController@fileUpload');