From 93ac2a508990f65bf53228f2b02b8d17e40dc110 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Wed, 2 Oct 2024 15:59:41 -0400 Subject: [PATCH] owner_uid --- app/Controllers/Home.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Controllers/Home.php b/app/Controllers/Home.php index 8e5b958..04450cb 100644 --- a/app/Controllers/Home.php +++ b/app/Controllers/Home.php @@ -25,6 +25,8 @@ class Home extends BaseController if ( !isset($out) || !isset($out["status_message"]) || $out["status_message"] != "VALID_LINK_FOUND"){ return redirect()->to($out["user_server_name"]); } + + $in["owner_uid"] = $out["owner_uid"]; //we need this to load jobs $out["task"] = $this->APIcall('POST', $this->wrenchApiServer(). 'tasks',$in)["result_list"]; return view('welcome_message', $out); }