diff options
author | Tulio Casagrande <tcasagra@thoughtworks.com> | 2017-02-16 13:42:50 -0200 |
---|---|---|
committer | Anike Arni <aarni@thoughtworks.com> | 2017-02-16 17:02:01 -0200 |
commit | 64780114ae90bb890d3ffa0a9aebe4686c6b74d3 (patch) | |
tree | 98bc9728eac3f7163a113db8554460d757588301 /web-ui/src | |
parent | c75cc8b57138cd8fc316d9371477b13e98f16d88 (diff) |
[#907] Adapt login status to work with single user
with @anikarni
Diffstat (limited to 'web-ui/src')
-rw-r--r-- | web-ui/src/interstitial/interstitial.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/src/interstitial/interstitial.js b/web-ui/src/interstitial/interstitial.js index 2eaa7a1c..78a17190 100644 --- a/web-ui/src/interstitial/interstitial.js +++ b/web-ui/src/interstitial/interstitial.js @@ -42,7 +42,7 @@ $(function () { var handler = setInterval(function () { $.ajax({ method: 'GET', - url: '/login/status' + url: '/status' }).success(function (data) { if (data.status === 'completed' || data.status === 'error') { window.location="/"; |