Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 01e459c

Browse files
authored
Merge pull request #511 from appirio-tech/dev
For Prod
2 parents 329d561 + 61b025c commit 01e459c

9 files changed

+12
-8
lines changed

actions/challengeRegistration.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ var sendNotificationEmail = function (api, componentInfo, userId, activeForumCat
404404
if (challengeType === CHALLENGE_TYPE.DEVELOP) {
405405
forumURL = api.config.tcConfig.developForumsUrlPrefix + activeForumCategoryId;
406406
reviewURL = process.env.TC_SOFTWARE_SERVER_NAME + '/review/actions/ViewProjectDetails?pid=' + challengeId;
407-
submitURL = process.env.TC_ACTIVATION_SERVER_NAME + '/challenge-details/' + challengeId + '/submit/?type=develop';
407+
submitURL = process.env.TC_WWW_SERVER_NAME + '/challenge-details/' + challengeId + '/submit/?type=develop';
408408
} else if (challengeType === CHALLENGE_TYPE.DESIGN) {
409409
forumURL = api.config.tcConfig.studioForumsUrlPrefix + activeForumCategoryId;
410410
//submitURL = process.env.TC_STUDIO_SERVER_NAME + '/?module=ViewContestDetails&ct=' + challengeId;

actions/memberRegistration.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ var registerUser = function (user, api, dbConnectionMap, next) {
396396
},
397397
function (callback) {
398398
var url;
399-
url = process.env.TC_ACTIVATION_SERVER_NAME + '/reg2/activate.action?code=' + activationCode;
399+
url = process.env.TC_ACTIVATION_SERVER_NAME + '?code=' + activationCode + '&retUrl=https://www.topcoder.com/skill-picker';
400400
if (user.regSource && user.regSource.match(/arena/)) {
401401
url += '&destination=http%3A%2F%2Farena.topcoder.com';
402402
}

actions/user.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ function userActivationEmail(api, connection, next) {
233233
toAddress : rs[0].address,
234234
fromAddress : process.env.TC_EMAIL_ACCOUNT,
235235
senderName : activationEmailSenderName,
236-
url : process.env.TC_ACTIVATION_SERVER_NAME + '/reg2/activate.action?code=' + activationCode,
236+
url : process.env.TC_ACTIVATION_SERVER_NAME + '?code=' + activationCode + '&retUrl=https://www.topcoder.com/skill-picker',
237237
userHandle : rs[0].handle
238238
}, 'default');
239239
api.cache.save(cacheKey, currentResendTimes + 1, api.config.tcConfig.userActivationCacheLifeTime,

deploy/ci.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ export TC_EMAIL_PASSWORD=tc_public_email
5858
5959
export TC_EMAIL_TEMPLATE_DIR=mail_templates
6060

61-
export TC_ACTIVATION_SERVER_NAME="https://www.topcoder.com"
61+
export TC_ACTIVATION_SERVER_NAME="https://api.topcoder.com/pub/activation.html"
62+
export TC_WWW_SERVER_NAME="https://www.topcoder.com"
6263
export TC_SOFTWARE_SERVER_NAME="https://www.topcoder.com"
6364

6465
#export DISABLE_CONSOLE_LOG=true

deploy/development.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ export TC_EMAIL_PASSWORD=tc_public_email
6060
6161
export TC_EMAIL_TEMPLATE_DIR=mail_templates
6262

63-
export TC_ACTIVATION_SERVER_NAME="https://www.topcoder.com"
63+
export TC_ACTIVATION_SERVER_NAME="https://api.topcoder.com/pub/activation.html"
64+
export TC_WWW_SERVER_NAME="https://www.topcoder.com"
6465
export TC_SOFTWARE_SERVER_NAME="https://software.topcoder.com"
6566
export TC_FORUMS_SERVER_NAME="http://apps.topcoder.com/forums"
6667

deploy/vm.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ export TC_EMAIL_PASSWORD=tc_public_email
5454
5555
export TC_EMAIL_TEMPLATE_DIR=mail_templates
5656

57-
export TC_ACTIVATION_SERVER_NAME="https://www.topcoder.com"
57+
export TC_ACTIVATION_SERVER_NAME="https://api.topcoder.com/pub/activation.html"
58+
export TC_WWW_SERVER_NAME="https://www.topcoder.com"
5859
export TC_SOFTWARE_SERVER_NAME="https://software.topcoder.com"
5960
export TC_FORUMS_SERVER_NAME="http://apps.topcoder.com/forums"
6061

initializers/.dataAccess.js.swp

-28 KB
Binary file not shown.

initializers/v3client.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ function getToken(connection, callback) {
8787
});
8888
}
8989

90+
9091
function urlBase64Decode(str) {
9192
var output = str.replace(/-/g, '+').replace(/_/g, '/');
9293

@@ -148,7 +149,6 @@ function isTokenExpired(token) {
148149
return !(d.valueOf() > (new Date().valueOf()))
149150
}
150151

151-
152152
/**
153153
* Get IDs of users in the specified group
154154
*

local/env.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ export TC_EMAIL_PASSWORD=tc_public_email
5858
5959
export TC_EMAIL_TEMPLATE_DIR=mail_templates
6060

61-
export TC_ACTIVATION_SERVER_NAME="https://www.topcoder.com"
61+
export TC_ACTIVATION_SERVER_NAME="https://api.topcoder.com/pub/activation.html"
62+
export TC_WWW_SERVER_NAME="https://www.topcoder.com"
6263
export TC_SOFTWARE_SERVER_NAME="https://software.topcoder.com"
6364
export TC_FORUMS_SERVER_NAME="http://apps.topcoder.com/forums"
6465

0 commit comments

Comments
 (0)