From 1f6bb0c7375549349165e2847921186344d01ab8 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Thu, 25 Jul 2024 11:06:48 -0400 Subject: [PATCH] wallet cards --- www-api/app/Controllers/WrenchWallet.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/www-api/app/Controllers/WrenchWallet.php b/www-api/app/Controllers/WrenchWallet.php index 18892dc7..e9244f34 100644 --- a/www-api/app/Controllers/WrenchWallet.php +++ b/www-api/app/Controllers/WrenchWallet.php @@ -228,15 +228,16 @@ class WrenchWallet extends BaseController $out = $local_out; } + $out["wallet_cards"] = []; //$this->doCacheStep($in, $out); - $final_out = $out; // start from all out - $final_out["environment"] = $current_env + 0; // force convert to interger = $this->getSiteConfigurations("system.live"); - $final_out["session_image_server"] = $primary_image_sever; // ( $final_out["environment"] > 0 )? 'https://apigate.nebula.g1.wrenchboard.com/en/wrench/api/v1/getmedia/' : "https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1/getmedia/"; - $final_out["server_tag"] = $server_tag; - $final_out["language"] = "en"; - $final_out["ip_loc"] = $ip_loc; +// $final_out = $out; // start from all out +// $final_out["environment"] = $current_env + 0; // force convert to interger = $this->getSiteConfigurations("system.live"); +// $final_out["session_image_server"] = $primary_image_sever; // ( $final_out["environment"] > 0 )? 'https://apigate.nebula.g1.wrenchboard.com/en/wrench/api/v1/getmedia/' : "https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1/getmedia/"; +// $final_out["server_tag"] = $server_tag; +// $final_out["language"] = "en"; +// $final_out["ip_loc"] = $ip_loc; // return json_encode( $final_out ); return $this->respond( $this->summaryReturnData($in,$out), 200); }