+ Add modification of user identification route

This commit is contained in:
Djery-Tom 2020-07-30 17:02:25 +01:00
parent 17bb7fd43e
commit 0e63d3528c
1 changed files with 1 additions and 0 deletions

View File

@ -100,6 +100,7 @@
// Idendification routes // Idendification routes
$router->group(['prefix' => '/identifications'] , function () use ($router){ $router->group(['prefix' => '/identifications'] , function () use ($router){
$router->post('','WalletServiceController@post'); $router->post('','WalletServiceController@post');
$router->put('','WalletServiceController@put');
$router->post('{id_identification}','WalletServiceController@postWithFiles'); $router->post('{id_identification}','WalletServiceController@postWithFiles');
$router->get('{user_phone}','WalletServiceController@get'); $router->get('{user_phone}','WalletServiceController@get');
$router->get('verify/{user_phone}','WalletServiceController@get'); $router->get('verify/{user_phone}','WalletServiceController@get');