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

Commit e8edc01

Browse files
author
Parth Shah
committed
Merge branch 'release/v1.0.8' into dev
2 parents 9ca2aab + 5d26ded commit e8edc01

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.0.7
1+
v1.0.8

app/services/user.service.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ describe('User Service', function() {
66
bard.appModule('topcoder');
77
bard.inject(this, '$httpBackend', 'UserService', 'CONSTANTS');
88

9-
apiUrl = CONSTANTS.API_URL;
9+
apiUrl = CONSTANTS.AUTH_API_URL;
1010

1111
// mock api
1212
$httpBackend

app/topcoder.constants.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
angular.module("CONSTANTS", [])
22

33
.constant("CONSTANTS", {
4-
"API_URL": "https://api.topcoder-dev.com/v3",
5-
"AUTH_API_URL": "https://api.topcoder-dev.com/v3",
6-
"API_URL_V2": "https://api.topcoder-dev.com/v2",
4+
"API_URL": "https://api.topcoder-qa.com/v3.0.0",
5+
"AUTH_API_URL": "https://api.topcoder-qa.com/v3",
6+
"API_URL_V2": "https://api.topcoder-qa.com/v2",
77
"ASSET_PREFIX": "",
8-
"auth0Callback": "https://api.topcoder-dev.com/pub/callback.html",
9-
"auth0Domain": "topcoder-dev.auth0.com",
10-
"BLOG_LOCATION": "https://www.topcoder-dev.com/feed/?post_type=blog",
11-
"clientId": "JFDo7HMkf0q2CkVFHojy3zHWafziprhT",
12-
"COMMUNITY_URL": "//community.topcoder-dev.com",
13-
"domain": "topcoder-dev.com",
14-
"ENVIRONMENT": "development",
15-
"FORUMS_APP_URL": "//apps.topcoder-dev.com/forums",
16-
"HELP_APP_URL": "help.topcoder-dev.com",
17-
"MAIN_URL": "https://www.topcoder-dev.com",
18-
"ARENA_URL": "//arena.topcoder-dev.com",
8+
"auth0Callback": "https://api.topcoder-qa.com/pub/callback.html",
9+
"auth0Domain": "topcoder-qa.auth0.com",
10+
"BLOG_LOCATION": "https://www.topcoder-qa.com/feed/?post_type=blog",
11+
"clientId": "EVOgWZlCtIFlbehkq02treuRRoJk12UR",
12+
"COMMUNITY_URL": "//community.topcoder-qa.com",
13+
"domain": "topcoder-qa.com",
14+
"ENVIRONMENT": "qa",
15+
"FORUMS_APP_URL": "//apps.topcoder-qa.com/forums",
16+
"HELP_APP_URL": "help.topcoder-qa.com",
17+
"MAIN_URL": "https://www.topcoder-qa.com",
18+
"ARENA_URL": "//arena.topcoder-qa.com",
1919
"NEW_CHALLENGES_URL": "https://www.topcoder.com/challenges/develop/upcoming/",
2020
"NEW_RELIC_APPLICATION_ID": "",
21-
"PHOTO_LINK_LOCATION": "https://community.topcoder-dev.com",
21+
"PHOTO_LINK_LOCATION": "https://community.topcoder-qa.com",
2222
"submissionDownloadPath": "/review/actions/DownloadContestSubmission?uid=",
2323
"SWIFT_PROGRAM_ID": 3445,
24-
"SWIFT_PROGRAM_URL": "apple.topcoder-dev.com",
24+
"SWIFT_PROGRAM_URL": "apple.topcoder-qa.com",
2525
"UPCOMING_SRMS_URL": "https://www.topcoder.com/challenges/data/upcoming/",
2626
"EVENT_USER_LOGGED_IN": "user_logged_in",
2727
"EVENT_USER_LOGGED_OUT": "user_logged_out",

config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module.exports = function() {
4141
},
4242
'qa': {
4343
'CONSTANTS': {
44-
API_URL: process.env.API_URL || 'https://api.topcoder-qa.com/v3',
44+
API_URL: process.env.API_URL || 'https://api.topcoder-qa.com/v3.0.0',
4545
AUTH_API_URL: process.env.AUTH_API_URL || 'https://api.topcoder-qa.com/v3',
4646
API_URL_V2: process.env.API_URL_V2 || 'https://api.topcoder-qa.com/v2',
4747
ASSET_PREFIX: process.env.ASSET_PREFIX || '',

0 commit comments

Comments
 (0)