From 0981a366a76a37604aedef66f4fa4748e073496a Mon Sep 17 00:00:00 2001 From: mgaoVA <16783916+mgaoVA@users.noreply.github.com> Date: Tue, 25 Jul 2023 14:45:49 -0400 Subject: [PATCH] mark deprecated endpoint --- LEAF_Nexus/api/controllers/EmployeeController.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/LEAF_Nexus/api/controllers/EmployeeController.php b/LEAF_Nexus/api/controllers/EmployeeController.php index 0f8c8547b..5de9a90c8 100644 --- a/LEAF_Nexus/api/controllers/EmployeeController.php +++ b/LEAF_Nexus/api/controllers/EmployeeController.php @@ -68,6 +68,21 @@ public function post($act) return print_r($args, true) . print_r($_GET, true); }); + // Deprecated + $this->index['POST']->register('employee/refresh/[text]/[digit]', function ($args) use ($employee, $national_db) { + if (!$national_db) { + $return_value = $employee->refresh($args[0]); + } else { + $return_value = array( + 'status' => array( + 'code' => 4, + 'message' => 'You can\'t update the national orgchart' + ) + ); + } + + return json_encode($return_value); + }); $this->index['POST']->register('employee/refresh/[text]', function ($args) use ($employee, $national_db) { if (!$national_db) {