Falily detail
This commit is contained in:
@@ -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');
|
||||
|
||||
@@ -79,6 +79,7 @@ class WrenchApi extends BaseController
|
||||
'sendreferral' => ['POST'],
|
||||
'refferhx' => ['POST'],
|
||||
'accounttypes' => ['POST'],
|
||||
'jobmanageragree' => ['POST'],
|
||||
'jobmanagerlist' => ['POST'],
|
||||
'jobmanageroffers'=> ['POST'],
|
||||
'profilepasschange' => ['POST'],
|
||||
|
||||
@@ -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)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -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)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -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'),
|
||||
|
||||
Reference in New Issue
Block a user