From 053a429cca00bb96781ea658e8fe6e34a5b66177 Mon Sep 17 00:00:00 2001 From: "DESKTOP-GBA0BK8\\Admin" Date: Thu, 23 Mar 2023 16:48:30 -0400 Subject: [PATCH] My jobs added --- www-api/public/svs/user/userve.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/www-api/public/svs/user/userve.php b/www-api/public/svs/user/userve.php index 75145a9a..cfe74cfc 100755 --- a/www-api/public/svs/user/userve.php +++ b/www-api/public/svs/user/userve.php @@ -44,7 +44,8 @@ $endpoints = array( 'couponredeem' => array('POST'), 'sendinterestmessage' => array('POST'), 'replyinterestmessage' => array('POST'), - 'disableaccount' => array('POST') + 'disableaccount' => array('POST'), + 'myjobs' => array('POST'), ); $call_backend = true; // sometimes we need to overwite the call to the extenstion API @@ -195,6 +196,8 @@ switch ($endpoint) { ]; // $call_backend = false; + break; + case 'myjobs': $in["action"] = WRENCHBOARD_ACCOUNT_JOBLIST; break; case 'sitecontact': $local_out = ['result'=>'100','msg'=>'Received'];