From 247bdf5a1326a2b2b28701b9a34ae14c9216d6cf Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Fri, 23 Jun 2023 14:38:49 -0400 Subject: [PATCH] offerinterestlistmsg --- www-api/app/Config/Routes.php | 1 + www-api/app/Controllers/WrenchApi.php | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/www-api/app/Config/Routes.php b/www-api/app/Config/Routes.php index aa7f1d1e..cb36a58a 100644 --- a/www-api/app/Config/Routes.php +++ b/www-api/app/Config/Routes.php @@ -152,6 +152,7 @@ $routes->post('/en/wrench/api/v1/payremcard', 'WrenchApi::apigate'); $routes->post('/en/wrench/api/v1/offersinterestlist', 'WrenchApi::apigate'); $routes->post('/en/wrench/api/v1/offersinterestproc', 'WrenchApi::apigate'); $routes->post('/en/wrench/api/v1/offerinterestmsg', 'WrenchApi::apigate'); +$routes->post('/en/wrench/api/v1/offerinterestlistmsg', 'WrenchApi::apigate'); $routes->post('/en/wrench/api/v1/resources', 'WrenchResources::website'); $routes->post('/en/wrench/api/v1/askresources', 'WrenchResources::aigate'); diff --git a/www-api/app/Controllers/WrenchApi.php b/www-api/app/Controllers/WrenchApi.php index 847ff43a..a4c2f1ed 100644 --- a/www-api/app/Controllers/WrenchApi.php +++ b/www-api/app/Controllers/WrenchApi.php @@ -109,6 +109,7 @@ class WrenchApi extends BaseController 'offersinterestlist' => ['POST'], 'offersinterestproc' => ['POST'], 'offerinterestmsg' => ['POST'], + 'offerinterestlistmsg' => ['POST'], 'payprevcard' => ['POST'], 'paynewcard' => ['POST'], 'paylistcard' => ['POST'], @@ -134,6 +135,9 @@ class WrenchApi extends BaseController break; case 'offerinterestmsg': $in["action"] = WRENCHBOARD_JOB_MRKTINT_QUEST; + break; + case 'offerinterestlistmsg': + break; case 'offersinterestproc': $in = $this->procOfferInterest($in);