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
+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;
}