Skip to content

Commit 473d443

Browse files
authored
Merge pull request #1700 from topcoder-platform/pm-2640
fix(PM-2640): copilot url in WM
2 parents 98ac8ca + 6a7f36f commit 473d443

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/constants/development.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = {
2222
CHALLENGE_TRACKS_URL: `${DEV_API_HOSTNAME}/v6/challenge-tracks`,
2323
CHALLENGE_PHASES_URL: `${DEV_API_HOSTNAME}/v6/challenge-phases`,
2424
CHALLENGE_TIMELINES_URL: `${DEV_API_HOSTNAME}/v6/challenge-timelines`,
25-
COPILOTS_URL: 'https://copilots.topcoder-dev.com/copilots',
25+
COPILOTS_URL: 'https://copilots.topcoder-dev.com',
2626
PROJECT_API_URL: `${DEV_API_HOSTNAME}/v5/projects`,
2727
GROUPS_API_URL: `${DEV_API_HOSTNAME}/v6/groups`,
2828
TERMS_API_URL: `${DEV_API_HOSTNAME}/v5/terms`,

config/constants/local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.exports = {
3939
CHALLENGE_TIMELINES_URL: `${LOCAL_CHALLENGE_API}/challenge-timelines`,
4040

4141
// Copilots and other apps remain on dev
42-
COPILOTS_URL: 'https://copilots.topcoder-dev.com/copilots',
42+
COPILOTS_URL: 'https://copilots.topcoder-dev.com',
4343

4444
// Projects API: keep dev unless you run projects locally
4545
PROJECT_API_URL: `${DEV_API_HOSTNAME}/v5/projects`,

config/constants/production.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = {
2121
CHALLENGE_TRACKS_URL: `${PROD_API_HOSTNAME}/v5/challenge-tracks`,
2222
CHALLENGE_PHASES_URL: `${PROD_API_HOSTNAME}/v5/challenge-phases`,
2323
CHALLENGE_TIMELINES_URL: `${PROD_API_HOSTNAME}/v5/challenge-timelines`,
24-
COPILOTS_URL: `https://copilots.${DOMAIN}/copilots`,
24+
COPILOTS_URL: `https://copilots.${DOMAIN}`,
2525
PROJECT_API_URL: `${PROD_API_HOSTNAME}/v5/projects`,
2626
GROUPS_API_URL: `${PROD_API_HOSTNAME}/v5/groups`,
2727
TERMS_API_URL: `${PROD_API_HOSTNAME}/v5/terms`,

0 commit comments

Comments
 (0)