From 233dce379b3f59eb3296e59ab6b7cf247af2fb31 Mon Sep 17 00:00:00 2001 From: velz Date: Tue, 15 Jul 2025 14:58:41 +0530 Subject: [PATCH] CHANGE_HR_ACITIVTY_API_ROUTE --- app/Config/Routes.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Config/Routes.php b/app/Config/Routes.php index edb05787..94ff732e 100755 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -491,11 +491,12 @@ $routes->group("/api", ["filter" => "authJWT"], function ($routes) { $routes->post("employeeRest/saveMpin", "RestAuthenticationController::saveMpin"); $routes->post("employeeRest/updateMpin", "RestAuthenticationController::updateMpin"); $routes->post("employeeRest/getPostEmployeeDataForAuth", "RestAuthenticationController::getPostEmployeeDataForAuth"); -$routes->post("logHrActivity", "RestAuthenticationController::logHrActivity"); +// $routes->post("logHrActivity", "RestAuthenticationController::logHrActivity"); $routes->group("employeeRest", ["filter" => "authJWT"], function ($routes) { + $routes->post("logHrActivity", "RestAuthenticationController::logHrActivity"); $routes->post("getVerifiedUserData", "RestAuthenticationController::getVerifiedUserData"); $routes->post("storeFireBase", "EmployeeRestController::storeFireBase");