From da62615a2b8ebc03fed32075eadc168be61f381a Mon Sep 17 00:00:00 2001 From: Mart van Santen <mart@greenhost.nl> Date: Thu, 23 Mar 2023 17:40:28 +0800 Subject: [PATCH] Small fix in redirect --- backend/web/static/base.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/backend/web/static/base.js b/backend/web/static/base.js index 7838a87d..a2cf2f18 100644 --- a/backend/web/static/base.js +++ b/backend/web/static/base.js @@ -18,7 +18,7 @@ // In default configuration the dashboed is on '/'. This can be overwritten // before calling the scripts (and configured by the flask app -var dashboard_url = '/'; +var dashboard_url = ''; // Check if an auth flow is configured and redirect to auth page in that // case. @@ -33,6 +33,13 @@ function check_flow_auth() { return; } + // Some older stackspin releases, do not provide the dashboard_url, + // flask writes 'None' as string in that case, we want to cover those + // cases and revert to the default + if (dashboard_url == 'None'|| dashboard_url == '') { + dashboard_url = window.location.protocol + "//" + window.location.host; + } + // If no redirect is set, redirect to dashboard window.location.href = dashboard_url + '/login'; } -- GitLab