Skip to content

Commit 095cf3e

Browse files
author
sachin-maheshwari
authored
Merge branch 'master' into dev
2 parents 97beb75 + ae8be61 commit 095cf3e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@topcoder-platform/tc-auth-lib",
3-
"version": "1.0.0",
3+
"version": "1.0.2",
44
"description": "Topcoder Authentication lib ",
55
"main": "index.js",
66
"scripts": {

web-assets/js/setupAuth0WithRedirect.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ const qs = (function (a) {
2323

2424
const authSetup = function () {
2525

26-
let domain = 'auth.topcoder-dev.com';
27-
const clientId = 'BXWXUWnilVUPdN01t2Se29Tw2ZYNGZvH';
26+
let domain = 'auth.topcoder.com';
27+
const clientId = 'UW7BhsnmAQh0itl56g1jUPisBO9GoowD';
2828
const useLocalStorage = false;
2929
const useRefreshTokens = false;
3030
const v3JWTCookie = 'v3jwt';
@@ -38,7 +38,7 @@ const authSetup = function () {
3838
const utmSource = qs['utm_source'];
3939
const utmMedium = qs['utm_medium'];
4040
const utmCampaign = qs['utm_campaign'];
41-
const loggerMode = "dev";
41+
const loggerMode = "prod";
4242
const IframeLogoutRequestType = "LOGOUT_REQUEST";
4343
const enterpriseCustomers = ['zurich', 'cs'];
4444
const mode = qs['mode'] || 'signIn';
@@ -48,7 +48,7 @@ const authSetup = function () {
4848
if (utmSource &&
4949
(utmSource != 'undefined') &&
5050
(enterpriseCustomers.indexOf(utmSource) > -1)) {
51-
domain = "topcoder-dev.auth0.com";
51+
domain = "topcoder.auth0.com";
5252
returnAppUrl += '&utm_source=' + utmSource;
5353
}
5454

web-assets/js/signup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
var apiServerUrl = "https://api.topcoder-dev.com/v3/users";
2+
var apiServerUrl = "https://api.topcoder.com/v3/users";
33
var qs = (function (a) {
44
if (a == "") return {};
55
var b = {};

0 commit comments

Comments
 (0)