Top up result
This commit is contained in:
@@ -231,6 +231,8 @@ define('WRENCHBOARD_USER_SETTINGS', 11058);
|
||||
define('WRENCHBOARD_GETUSER_SETTINGS', 11059);
|
||||
|
||||
define('WRENCHBOARD_ACCOUNT_WALLETS', 11060);
|
||||
|
||||
define('WRENCHBOARD_ACCOUNT_TOPUP_RESULT', 11061);
|
||||
define('WRENCHBOARD_ACCOUNT_PREPARE_TOPUP', 11062);
|
||||
define('WRENCHBOARD_ACCOUNT_COMPLETE_TOPUP', 11063);
|
||||
define('WRENCHBOARD_ACCOUNT_REFFERHX', 11064 );
|
||||
|
||||
@@ -86,6 +86,8 @@ $routes->post('/en/wrench/api/v1/purchasehx', 'WrenchApi::apigate');
|
||||
|
||||
$routes->post('/en/wrench/api/v1/stepresetpass', 'WrenchApi::apigate');
|
||||
$routes->post('/en/wrench/api/v1/starttopup', 'WrenchApi::apigate');
|
||||
$routes->post('/en/wrench/api/v1/topupresult', 'WrenchApi::apigate');
|
||||
|
||||
|
||||
|
||||
$routes->post('/en/wrench/api/v1/jobmanageragree', 'WrenchApi::apigate');
|
||||
|
||||
@@ -166,6 +166,7 @@ abstract class BaseController extends Controller
|
||||
'activetaskslist' => ['POST'],
|
||||
'profilepasschange' => ['POST'],
|
||||
'starttopup' => ['POST'],
|
||||
'topupresult'=> ['POST'],
|
||||
'familylist' => ['POST'],
|
||||
'familyadd' => ['POST'],
|
||||
'familyupdate' => ['POST'],
|
||||
|
||||
@@ -140,6 +140,9 @@ class WrenchApi extends BaseController
|
||||
case 'starttopup':
|
||||
$in["action"] = WRENCHBOARD_ACCOUNT_PREPARE_TOPUP;
|
||||
break;
|
||||
case 'topupresult':
|
||||
$in["action"] = WRENCHBOARD_ACCOUNT_TOPUP_RESULT;
|
||||
break;
|
||||
case 'profilepasschange':
|
||||
$in["action"] = WRENCHBOARD_PROFILE_RESETPASS;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user