family wallet redeem

This commit is contained in:
CHIEFSOFT\ameye
2024-03-08 07:52:34 -05:00
parent 2fb77c5870
commit dec16a5159
2 changed files with 18 additions and 0 deletions
+5
View File
@@ -117,6 +117,11 @@ $routes->post('/en/wrench/api/v1/mypageintro', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/familylist', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/familywallet', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/familywallet/redeem', 'WrenchWallet::apigate');
$routes->post('/en/wrench/api/v1/familywallet/redeem/options', 'WrenchWallet::apigate');
$routes->post('/en/wrench/api/v1/familyresources', 'WrenchResources::familyresources');
$routes->post('/en/wrench/api/v1/familybanners', 'WrenchBanners::apigate'); // class WrenchBanners WrenchApi
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Controllers;
class WrenchWallet extends BaseController
{
public function aigate(){
return ['aaa'=>'bbbbb'];
}
}