This commit is contained in:
CHIEFSOFT\ameye
2024-11-18 13:10:05 -05:00
parent de9cc44fac
commit 75c0cf058a
6 changed files with 62 additions and 3 deletions
+9 -1
View File
@@ -29,5 +29,13 @@ class PromoAdmin extends BaseController
return $this->respond( $this->summaryReturnData($in,$out), 200);
}
public function promoGetMember(){
log_message('critical', "***** ***** promoGetMember::promoAddRef ****" );
$raw_json = file_get_contents('php://input');
$in = json_decode($raw_json, true);
$out = [];
$in["action"] = WRENCHBOARD_PROMOADMIN_GETMEMBER;
$ret = $this->wrenchboard->wrenchboard_api($in, $out);
return $this->respond( $this->summaryReturnData($in,$out), 200);
}
}