Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PROD - Changelog release #6914

Merged
merged 5 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,7 @@ workflows:
branches:
only:
- PROD-4183
- MP-327
- fix_country_setting_in_profile
- justin_redirects
- changelog
# This is alternate dev env for parallel testing
- "build-test":
context : org-global
Expand Down
1 change: 1 addition & 0 deletions config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ module.exports = {
LOCAL_MODE: false,
DEFAULT_SPACE_NAME: 'default',
DEFAULT_ENVIRONMENT: 'master',
CHANGELOG_ID: '5ULnHeUIuYAyLhNO97zAqy',
},

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export default function ChallengeViewSelector(props) {
{
(hasRegistered && mySubmissions.length > 0) && (
<a
href={`${config.URL.SUBMISSION_REVIEW}/challenges/${challenge.legacyId}`}
href={`${config.URL.SUBMISSION_REVIEW}/challenges/${challenge.id}`}
styleName="challenge-selector-common challenge-unselected-view"
target="_blank"
rel="oopener noreferrer"
Expand Down
6 changes: 6 additions & 0 deletions src/shared/routes/Topcoder/Routes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import { config, isomorphy } from 'topcoder-react-utils';
import ContentfulLoader from 'containers/ContentfulLoader';
import LoadingIndicator from 'components/LoadingIndicator';
import Article from 'components/Contentful/Article';
import Viewport from 'components/Contentful/Viewport';

import EDUHome from '../EDUHome';
import EDUTracks from '../EDUTracks';
Expand Down Expand Up @@ -96,6 +97,11 @@ export default function Topcoder() {
component={() => <Settings base="/settings" />}
path="/settings"
/>
<Route
path="/changelog/"
component={() => <Viewport preview id={`${config.CONTENTFUL.CHANGELOG_ID}`} />}
/>

{/* EDU Portal */}
<Route
component={EDUHome}
Expand Down