From eef1857ec49cdfa2cd5802735dff1179474a1510 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Mon, 15 May 2023 18:40:28 -0400 Subject: [PATCH] activetaskslist --- www-api/app/Config/Routes.php | 2 ++ www-api/app/Controllers/WrenchApi.php | 1 + www-api/public/svs/user/userve.php | 1 + 3 files changed, 4 insertions(+) diff --git a/www-api/app/Config/Routes.php b/www-api/app/Config/Routes.php index a5bf0f2b..8617f319 100644 --- a/www-api/app/Config/Routes.php +++ b/www-api/app/Config/Routes.php @@ -81,6 +81,8 @@ $routes->post('/en/wrench/api/v1/jobmanagercreatejob', 'WrenchApi::apigate') $routes->post('/en/wrench/api/v1/jobmanagerupdatejob', 'WrenchApi::apigate'); $routes->post('/en/wrench/api/v1/jobmanagerdeletejob', 'WrenchApi::apigate'); +$routes->post('/en/wrench/api/v1/activetaskslist', 'WrenchApi::apigate'); + $routes->post('/en/wrench/api/v1/familylist', 'WrenchApi::apigate'); $routes->post('/en/wrench/api/v1/familyadd', 'WrenchApi::apigate'); diff --git a/www-api/app/Controllers/WrenchApi.php b/www-api/app/Controllers/WrenchApi.php index 149fd44d..514ab93f 100644 --- a/www-api/app/Controllers/WrenchApi.php +++ b/www-api/app/Controllers/WrenchApi.php @@ -86,6 +86,7 @@ class WrenchApi extends BaseController 'jobmanagercreatejob'=> ['POST'], 'jobmanagerupdatejob'=> ['POST'], 'jobmanagerdeletejob'=> ['POST'], + 'activetaskslist' => ['POST'], 'profilepasschange' => ['POST'], 'starttopup' => ['POST'], 'familylist' => ['POST'], diff --git a/www-api/public/svs/user/userve.php b/www-api/public/svs/user/userve.php index 7dab6cdd..75efe650 100755 --- a/www-api/public/svs/user/userve.php +++ b/www-api/public/svs/user/userve.php @@ -65,6 +65,7 @@ $endpoints = array( 'jobmanagercreatejob' => array('POST'), 'jobmanagerupdatejob' => array('POST'), 'jobmanagerdeletejob' => array('POST'), + 'activetaskslist' => array('POST'), 'profilepasschange' => array('POST'), 'starttopup' => array('POST'), 'familylist' => array('POST'),