Falily detail

This commit is contained in:
CHIEFSOFT\ameye
2023-05-09 12:02:42 -04:00
parent 33209e7db1
commit 23457f36cc
5 changed files with 10 additions and 3 deletions
+2 -1
View File
@@ -73,8 +73,9 @@ $routes->post('/en/wrench/api/v1/stepresetpass', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/starttopup', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/jobmanageragree', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/jobmanagerlist', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/jobmanageroffers', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/jobmanageroffers', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/familylist', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/familyadd', 'WrenchApi::apigate');
+1
View File
@@ -79,6 +79,7 @@ class WrenchApi extends BaseController
'sendreferral' => ['POST'],
'refferhx' => ['POST'],
'accounttypes' => ['POST'],
'jobmanageragree' => ['POST'],
'jobmanagerlist' => ['POST'],
'jobmanageroffers'=> ['POST'],
'profilepasschange' => ['POST'],
+3 -1
View File
@@ -97,7 +97,9 @@ class ResultFormatter extends Model
"uid" => $out["uid_${key}"],
"firstname" => $out["firstname_${key}"],
"lastname" => $out["lastname_${key}"],
"age" => $out["age_${key}"]
"age" => $out["age_${key}"],
"last_login" => '10-10-2024',
"task_count" => rand(0,20)
);
}
+3 -1
View File
@@ -91,7 +91,9 @@ function processOutJson($in, $out) {
"uid" => $out["uid_${key}"],
"firstname" => $out["firstname_${key}"],
"lastname" => $out["lastname_${key}"],
"age" => $out["age_${key}"]
"age" => $out["age_${key}"],
"last_login" => '10-10-2024',
"task_count" => rand(0,20)
);
}
+1
View File
@@ -58,6 +58,7 @@ $endpoints = array(
'sendreferral' => array('POST'),
'refferhx' => array('POST'),
'accounttypes' => array('POST'),
'jobmanageragree' => array('POST'),
'jobmanagerlist' => array('POST'),
'jobmanageroffers'=> array('POST'),
'profilepasschange' => array('POST'),