From 79131f86c40b6641694f278ad73d78e974783d2c Mon Sep 17 00:00:00 2001 From: Anil Singha <99383116+anilsingha-eGov@users.noreply.github.com> Date: Fri, 10 May 2024 16:12:07 +0530 Subject: [PATCH] ISTE-68: Added logout redirect url for tqm --- frontend/micro-ui/web/public/index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/micro-ui/web/public/index.html b/frontend/micro-ui/web/public/index.html index c9c086028d..587f3d360e 100644 --- a/frontend/micro-ui/web/public/index.html +++ b/frontend/micro-ui/web/public/index.html @@ -31,6 +31,8 @@ var digitHomeURL = "https://www.digit.org/"; var assetS3Bucket = "egov-dev-assets"; var invalidEmployeeRoles = ["CBO_ADMIN", "ORG_ADMIN", "ORG_STAFF", "SYSTEM"]; + var logoutRedirectURL = "digit-ui/employee/user/language-selection"; + var getConfig = function (key) { if (key === "STATE_LEVEL_TENANT_ID") { @@ -61,7 +63,9 @@ return invalidEmployeeRoles; } else if (key === "JWT_TOKEN") { return "ZWdvdi11c2VyLWNsaWVudDplZ292LXVzZXItc2VjcmV0"; - } + } else if (key === 'LOGOUT_REDIRECT_URL') { + return logoutRedirectURL; + } }; return {