From e0e870e7c93273f70dbc7a517d1f8c4e1ae0118c Mon Sep 17 00:00:00 2001 From: Karuna Vengurlekar Date: Thu, 10 Sep 2026 14:58:48 +0530 Subject: [PATCH 1/2] Add changes --- .../modules/fds-gateway-login-connector.md | 41 +++++++++---------- 1 file changed, 19 insertions(+), 22 deletions(-) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/fds-gateway-login-connector.md b/content/en/docs/marketplace/platform-supported-content/modules/fds-gateway-login-connector.md index 4b5d58bba51..8c9e071b32b 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/fds-gateway-login-connector.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/fds-gateway-login-connector.md @@ -89,41 +89,38 @@ For more information, see [Constants](/refguide/constants/). ### Configuring the SSO Redirect {#sso} -To enable SSO, create a `sso-login.html` file in `/theme/web/public` with the following content: +To enable SSO, create a `sso-login.html` file in `/theme/web` with the following content: ```html - -    FDS Gateway Login Connector -     + FDS Gateway Login Connector + - - ``` -Update the `originURI` cookie value in `index.html` and use `/sso-login.html` instead of `/login.html` as shown in the code below: +Update the ` + const url = new URL(window.location.href); + const subPath = url.pathname.substring(0, url.pathname.lastIndexOf("/")); + document.cookie = `originURI=${subPath}/sso-login.html${window.location.protocol === "https:" ? ";SameSite=None;Secure" : ""}`; + ``` ### Custom User Provisioning From cb9e43ae41023e904ad2f8d5a05b4eb174cbcd50 Mon Sep 17 00:00:00 2001 From: Karuna Vengurlekar Date: Fri, 11 Sep 2026 10:45:52 +0530 Subject: [PATCH 2/2] Implement feedback --- .../modules/fds-gateway-login-connector.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/fds-gateway-login-connector.md b/content/en/docs/marketplace/platform-supported-content/modules/fds-gateway-login-connector.md index 8c9e071b32b..4f252c747f6 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/fds-gateway-login-connector.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/fds-gateway-login-connector.md @@ -111,9 +111,9 @@ To enable SSO, create a `sso-login.html` file in `/theme/web` with the following ``` -Update the `