logoutSSO

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-06-23 10:46:51 +07:00
parent e07055a642
commit 5b661f6d55
2 changed files with 8 additions and 1 deletions

View file

@ -88,6 +88,11 @@ async function redirectToLandingPage() {
window.location.href = key_C_Config.landing_PageUrl;
}
async function logoutSSO() {
await deleteCookie(ACCESS_TOKEN);
window.location.href = key_C_Config.landing_PageUrl + `/logout`;
}
export {
getToken,
authenticated,
@ -96,4 +101,5 @@ export {
tokenParsed,
getCookie,
redirectToLandingPage,
logoutSSO,
};