Skip to content

Commit 7434c97

Browse files
Merge pull request #5374 from topcoder-platform/nav-vanilla-forum
Forums on top navigation should take use to Vanilla Forums
2 parents d9d2671 + 5dd95b2 commit 7434c97

File tree

6 files changed

+8
-11
lines changed

6 files changed

+8
-11
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ workflows:
289289
filters:
290290
branches:
291291
only:
292-
- free
292+
- nav-vanilla-forum
293293
# This is beta env for production soft releases
294294
- "build-prod-beta":
295295
context : org-global

__tests__/shared/components/Header/__snapshots__/index.jsx.snap

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,7 @@ exports[`Default render 1`] = `
110110
"title": "Programs",
111111
},
112112
Object {
113-
"href": "https://apps.topcoder-dev.com/forums",
114-
"openNewTab": true,
113+
"href": "https://vanilla.topcoder-dev.com",
115114
"title": "Forums",
116115
},
117116
Object {

__tests__/shared/components/__snapshots__/TopcoderFooter.jsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ exports[`Matches shallow shapshot 1`] = `
185185
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
186186
>
187187
<a
188-
href="https://apps.topcoder.com/forums"
188+
href="https://vanilla.topcoder-dev.com"
189189
>
190190
Forums
191191
</a>

config/default.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ module.exports = {
110110
BLOG: 'https://www.topcoder-dev.com/blog',
111111
BLOG_FEED: 'https://www.topcoder.com/blog/feed/',
112112
COMMUNITY: 'https://community.topcoder-dev.com',
113-
FORUMS: 'https://apps.topcoder-dev.com/forums',
113+
FORUMS: 'https://vanilla.topcoder-dev.com',
114114
HELP: 'https://www.topcoder.com/thrive/tracks?track=Topcoder&tax=Help%20Articles',
115115
SUBMISSION_REVIEW: 'https://submission-review.topcoder-dev.com',
116116

@@ -360,8 +360,7 @@ module.exports = {
360360
},
361361
{
362362
title: 'Forums',
363-
href: 'https://apps.topcoder-dev.com/forums',
364-
openNewTab: true,
363+
href: 'https://vanilla.topcoder-dev.com',
365364
},
366365
{
367366
title: 'Statistics',

config/production.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = {
3030
BASE: 'https://www.topcoder.com',
3131
HOME: '/my-dashboard',
3232
COMMUNITY: 'https://community.topcoder.com',
33-
FORUMS: 'https://apps.topcoder.com/forums',
33+
FORUMS: 'https://discussions.topcoder.com',
3434
HELP: 'https://www.topcoder.com/thrive/tracks?track=Topcoder&tax=Help%20Articles',
3535
SUBMISSION_REVIEW: 'https://submission-review.topcoder.com',
3636
MEMBER: 'https://member.topcoder.com',
@@ -165,8 +165,7 @@ module.exports = {
165165
},
166166
{
167167
title: 'Forums',
168-
href: 'https://apps.topcoder.com/forums',
169-
openNewTab: true,
168+
href: 'https://discussions.topcoder.com',
170169
},
171170
{
172171
title: 'Statistics',

src/shared/components/TopcoderFooter/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default function TopcoderFooter() {
7171
<Link to={`${base}/blog`}>Blog</Link>
7272
<Link to={`${base}/community/pipeline`}>Challenge Pipeline</Link>
7373
<Link to={`${base}/community/events`}>Events Calendar</Link>
74-
<Link to="https://apps.topcoder.com/forums">Forums</Link>
74+
<Link to={`${config.URL.FORUMS}`}>Forums</Link>
7575
<Link to={`${base}/community/member-programs`}>Programs</Link>
7676
<Link to={`${base}/community/statistics`}>Statistics</Link>
7777
<Link to={`${base}/community/member-programs/topcoder-open`}>TCO</Link>

0 commit comments

Comments
 (0)