From 542a03e7f1bf7f9ffdaa0c368960ee091d862b65 Mon Sep 17 00:00:00 2001 From: Gowtham M Date: Tue, 27 Jan 2026 14:38:04 +0530 Subject: [PATCH] GWM : Client id md5 changes --- app/Controllers/RestAuthenticationController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Controllers/RestAuthenticationController.php b/app/Controllers/RestAuthenticationController.php index bf48d9af..b2d54fbb 100755 --- a/app/Controllers/RestAuthenticationController.php +++ b/app/Controllers/RestAuthenticationController.php @@ -759,6 +759,7 @@ class RestAuthenticationController extends AdminController $decoded = json_decode($HRAccessData['allowed_modules'], true); $getAllhrData[$key]['allowed_modules'] = $decoded; + $HRAccessData['pre_client_id'] = md5($HRAccessData['pre_client_id']); $HRAccessData['post_client_id'] = md5($HRAccessData['post_client_id']); $token = JWTToken::encode($HRAccessData);