Skip to content

Prod Release - 0.1.0 #710

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

Merged
merged 34 commits into from
Jul 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
16fa1d1
fix: Github issue#666, Standard Design "Edit" Event Sequence Out of O…
Jun 1, 2020
10b0b35
Merge pull request #671 from topcoder-platform/feature/github-666-out…
Jun 1, 2020
6ed5a2c
feat: git#669 project search improvements - allows search by id and e…
Jun 3, 2020
0575dcf
Merge pull request #677 from topcoder-platform/feature/github-669-pro…
Jun 3, 2020
4318628
fix: typo
Jun 3, 2020
190cece
fix: https://github.com/topcoder-platform/challenge-engine-ui/issues/…
Jun 3, 2020
3394fb6
chore: adapted for changes in payment types
Jun 4, 2020
38c6aac
fix: git#679 Adapt for terms data model change
Jun 5, 2020
bcaefb4
fix: git#682 Console error when rendering the challenge timeline
Jun 5, 2020
9492f8e
fix: git#682 Console error when rendering the challenge timeline
Jun 5, 2020
98a4756
fix: git#683 Status field is not present when editing a challenge
Jun 8, 2020
8d1ef16
fix: removed console error/warning
Jun 8, 2020
42fcead
feat: git#684, Need Back button on challenge edit screen
Jun 8, 2020
963f708
fix: fixed button size of the last fix git#684, Need Back button on c…
Jun 8, 2020
cf95b34
fix: git#687 New challenge screen is loading for ever.
Jun 9, 2020
c966509
fix: Templates are not loading. Cause is default paging changes in th…
Jun 9, 2020
131aa75
feat: git#678 Timeline Edits Not Persisting
Jun 10, 2020
acd55c0
fix: git#678 Timeline Edits Not Persisting
Jun 10, 2020
df202de
fix: git#685 Always taking Marathon Match as Timeline Template while …
Jun 10, 2020
6374ae5
feat: git#665, WIP Filter Timeline Templates based on Selected Type
Jun 10, 2020
8bbd853
fix: typo
Jun 10, 2020
1cd6168
fix: git#690, No projects shown in the landing page
Jun 17, 2020
08c8958
fix: git##696 Updated placeholder for the search text box
Jun 17, 2020
537ac38
feat: git#668 Restyled the Edit button for the timeline component to …
Jun 19, 2020
d261b0d
feat: git#668 Added confirmation modal for save phase operation
Jun 19, 2020
a516ad0
fix: git#705 fixed overflowing text
Jun 19, 2020
494a241
fix: Removed projects loading on challenges pages
Jun 22, 2020
2f152f4
fix: git#707 New Challenge - Back button should take user to Challeng…
Jun 30, 2020
e231dc4
fix: NPE fix (Ideally it should not happen but because of some weird …
Jun 30, 2020
8ff64cb
fix: git#708, ChallengeEditor container - Remove potentially unused code
Jun 30, 2020
a66cabb
feat: git#706 Disable editing timeline template for a challenge - Hid…
Jun 30, 2020
47ac3ae
feat: git#700 Popup message or toaster is missing to notify user if t…
Jun 30, 2020
dca8b67
fix: git#709 Type of an old project is not shown, if we deprecated th…
Jun 30, 2020
12afeed
fix: git#694 Prizes are not being passed correctly - Removing default…
Jul 2, 2020
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: 3 additions & 1 deletion config/constants/development.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = {
CHALLENGE_TIMELINE_TEMPLATES_URL: `${DEV_API_HOSTNAME}/v5/timeline-templates`,
CHALLENGE_TYPES_URL: `${DEV_API_HOSTNAME}/v5/challenge-types`,
CHALLENGE_PHASES_URL: `${DEV_API_HOSTNAME}/v5/challenge-phases`,
CHALLENGE_TIMELINES_URL: `${DEV_API_HOSTNAME}/v5/challenge-timelines`,
PROJECT_API_URL: `${DEV_API_HOSTNAME}/v5/projects`,
GROUPS_API_URL: `${DEV_API_HOSTNAME}/v5/groups`,
TERMS_API_URL: `${DEV_API_HOSTNAME}/v5/terms`,
Expand All @@ -23,5 +24,6 @@ module.exports = {
DIRECT_PROJECT_URL: `https://www.${DOMAIN}/direct`,
ONLINE_REVIEW_URL: `https://software.${DOMAIN}`,
DEFAULT_TERM_UUID: 'ae6fc4ff-3bd1-4e3f-a987-cc60ab94b422',
DEFAULT_NDA_UUID: '7245bb7d-d7c9-45a0-9603-d5ff05af0977'
DEFAULT_NDA_UUID: '7245bb7d-d7c9-45a0-9603-d5ff05af0977',
SUBMITTER_ROLE_UUID: '732339e7-8e30-49d7-9198-cccf9451e221'
}
4 changes: 3 additions & 1 deletion config/constants/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = {
CHALLENGE_TIMELINE_TEMPLATES_URL: `${PROD_API_HOSTNAME}/v5/timeline-templates`,
CHALLENGE_TYPES_URL: `${PROD_API_HOSTNAME}/v5/challenge-types`,
CHALLENGE_PHASES_URL: `${PROD_API_HOSTNAME}/v5/challenge-phases`,
CHALLENGE_TIMELINES_URL: `${DEV_API_HOSTNAME}/v5/challenge-timelines`,
PROJECT_API_URL: `${PROD_API_HOSTNAME}/v5/projects`,
GROUPS_API_URL: `${PROD_API_HOSTNAME}/v5/groups`,
TERMS_API_URL: `${PROD_API_HOSTNAME}/v5/terms`,
Expand All @@ -22,5 +23,6 @@ module.exports = {
CONNECT_APP_URL: `https://connect.${DOMAIN}`,
ONLINE_REVIEW_URL: `https://software.${DOMAIN}`,
DEFAULT_TERM_UUID: 'ae6fc4ff-3bd1-4e3f-a987-cc60ab94b422',
DEFAULT_NDA_UUID: '7245bb7d-d7c9-45a0-9603-d5ff05af0977'
DEFAULT_NDA_UUID: '7245bb7d-d7c9-45a0-9603-d5ff05af0977',
SUBMITTER_ROLE_UUID: '732339e7-8e30-49d7-9198-cccf9451e221'
}
Loading