Skip to content
Snippets Groups Projects
Commit 0c97004b authored by Camille Blanchon's avatar Camille Blanchon
Browse files

Merge branch 'redmine-issues/22944' into 'develop'

REDMINE_ISSUE-22944 | Bouton se connecter ne renvoie plus sur la page de connexion

See merge request !828
parents 9f3c0a9e 35776585
No related branches found
No related tags found
1 merge request!828REDMINE_ISSUE-22944 | Bouton se connecter ne renvoie plus sur la page de connexion
...@@ -284,7 +284,10 @@ export default { ...@@ -284,7 +284,10 @@ export default {
return this.configuration.VUE_APP_DISABLE_LOGIN_BUTTON; return this.configuration.VUE_APP_DISABLE_LOGIN_BUTTON;
}, },
SSO_LOGIN_URL() { SSO_LOGIN_URL() {
return `${this.configuration.VUE_APP_LOGIN_URL}/?next=${encodeURIComponent(window.location.href)}`; if (this.configuration.VUE_APP_LOGIN_URL) {
return `${this.configuration.VUE_APP_LOGIN_URL}/?next=${encodeURIComponent(window.location.href)}`;
}
return null;
}, },
logo() { logo() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment