call action added

This commit is contained in:
CHIEFSOFT\ameye
2024-09-23 06:16:29 -04:00
parent ef3548f17d
commit 7efe21dfe1
+2 -1
View File
@@ -54,7 +54,8 @@ class AirFlow extends BaseController
public function flowOfferMissed(){
$raw_json = file_get_contents('php://input');
$in = json_decode($raw_json, true);
$in["action"] = WRB_CRONJOB_AUTO_OFFEREXPIRE;
$in["action"] = WRB_CRONJOB_AUTO_OFFEREXPIRE; //WRB_CRONJOB_AUTO_OFFEREXPIRE
$in["call_action"] = $in["action"];
$out =[];
log_message('critical', "AirFlow::flowOfferMissed ********* ALL ".serialize($in) );
$ret['WRB_CRONJOB_AUTO_OFFEREXPIRE'] = (new \App\Models\BackendModel())->wrenchboard_api($in, $out);