We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f59a54 commit b45d1faCopy full SHA for b45d1fa
web-assets/js/setupAuth0WithRedirect.js
@@ -33,7 +33,7 @@ const authSetup = function () {
33
const cookieExpireIn = 12 * 60; // 12 hrs
34
const refreshTokenInterval = 60000; // in milliseconds
35
const refreshTokenOffset = 65; // in seconds
36
- const returnAppUrl = qs['retUrl'];
+ let returnAppUrl = qs['retUrl'];
37
const shouldLogout = qs['logout'];
38
const regSource = qs['regSource'];
39
const utmSource = qs['utm_source'];
@@ -43,6 +43,7 @@ const authSetup = function () {
43
44
if (utmSource && utmSource != 'undefined') {
45
domain = "topcoder-dev.auth0.com";
46
+ returnAppUrl += '&utm_source=' + utmSource;
47
}
48
49
0 commit comments