This commit is contained in:
2022-03-02 01:58:19 -05:00
parent a3bd756566
commit dc77c56b43
2 changed files with 7 additions and 1 deletions
+2
View File
@@ -98,6 +98,8 @@ define('WRENCHBOARD_USER_GETBANKLIST', 11050);
define('WRENCHBOARD_USER_SENDMONEY', 11051);
define('WRENCHBOARD_USER_SENDJOBINT', 11052);
define('WRENCHBOARD_ACCOUNT_WALLETS', 11060);
define('WRENCHBOARD_ACCOUNT_END', 11999);
//**************************************************************
+5 -1
View File
@@ -29,7 +29,8 @@ $endpoints = array(
'sendmoneyfee' => array('POST'),
'getpendingjobs' => array('POST'),
'taskmessage' => array('POST'),
'sendtaskmessage' => array('POST')
'sendtaskmessage' => array('POST'),
'getwallets' => array('POST')
);
@@ -166,6 +167,9 @@ switch ($endpoint) {
break;
case 'sendtaskmessage': $in["action"] = WRENCHBOARD_MOBILE_SENDTASKMESSAGE;
break;
case 'getwallets': $in["action"] = WRENCHBOARD_ACCOUNT_WALLETS;
break;
}