-
Notifications
You must be signed in to change notification settings - Fork 51
V6 prod updates #1703
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
V6 prod updates #1703
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,27 +12,27 @@ module.exports = { | |
| ACCOUNTS_APP_CONNECTOR_URL: process.env.ACCOUNTS_APP_CONNECTOR_URL || `https://accounts-auth0.${DOMAIN}`, | ||
| ACCOUNTS_APP_LOGIN_URL: `https://accounts-auth0.${DOMAIN}`, | ||
| COMMUNITY_APP_URL: `https://www.${DOMAIN}`, | ||
| MEMBER_API_URL: `${PROD_API_HOSTNAME}/v5/members`, | ||
| CHALLENGE_API_URL: `${PROD_API_HOSTNAME}/v5/challenges`, | ||
| MEMBER_API_URL: `${PROD_API_HOSTNAME}/v6/members`, | ||
| CHALLENGE_API_URL: `${PROD_API_HOSTNAME}/v6/challenges`, | ||
| CHALLENGE_DEFAULT_REVIEWERS_URL: `${PROD_API_HOSTNAME}/v6/challenge/default-reviewers`, | ||
| CHALLENGE_API_VERSION: '1.1.0', | ||
| CHALLENGE_TIMELINE_TEMPLATES_URL: `${PROD_API_HOSTNAME}/v5/timeline-templates`, | ||
| CHALLENGE_TIMELINE_TEMPLATES_URL: `${PROD_API_HOSTNAME}/v6/timeline-templates`, | ||
| CHALLENGE_TYPES_URL: `${PROD_API_HOSTNAME}/v6/challenge-types`, | ||
| CHALLENGE_TRACKS_URL: `${PROD_API_HOSTNAME}/v5/challenge-tracks`, | ||
| CHALLENGE_PHASES_URL: `${PROD_API_HOSTNAME}/v5/challenge-phases`, | ||
| CHALLENGE_TIMELINES_URL: `${PROD_API_HOSTNAME}/v5/challenge-timelines`, | ||
| CHALLENGE_TRACKS_URL: `${PROD_API_HOSTNAME}/v6/challenge-tracks`, | ||
| CHALLENGE_PHASES_URL: `${PROD_API_HOSTNAME}/v6/challenge-phases`, | ||
| CHALLENGE_TIMELINES_URL: `${PROD_API_HOSTNAME}/v6/challenge-timelines`, | ||
| COPILOTS_URL: `https://copilots.${DOMAIN}`, | ||
| PROJECT_API_URL: `${PROD_API_HOSTNAME}/v5/projects`, | ||
| GROUPS_API_URL: `${PROD_API_HOSTNAME}/v5/groups`, | ||
| GROUPS_API_URL: `${PROD_API_HOSTNAME}/v6/groups`, | ||
| TERMS_API_URL: `${PROD_API_HOSTNAME}/v5/terms`, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [ |
||
| MEMBERS_API_URL: `${PROD_API_HOSTNAME}/v5/members`, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [ |
||
| RESOURCES_API_URL: `${PROD_API_HOSTNAME}/v5/resources`, | ||
| RESOURCE_ROLES_API_URL: `${PROD_API_HOSTNAME}/v5/resource-roles`, | ||
| RESOURCES_API_URL: `${PROD_API_HOSTNAME}/v6/resources`, | ||
| RESOURCE_ROLES_API_URL: `${PROD_API_HOSTNAME}/v6/resource-roles`, | ||
| SUBMISSIONS_API_URL: `${PROD_API_HOSTNAME}/v6/submissions`, | ||
| REVIEW_TYPE_API_URL: `${PROD_API_HOSTNAME}/v5/reviewTypes`, | ||
| REVIEWS_API_URL: `${PROD_API_HOSTNAME}/v5/reviews`, //update to use v6 | ||
| SCORECARDS_API_URL: `${PROD_API_HOSTNAME}/v5/scorecards`, // update to use v6 | ||
| WORKFLOWS_API_URL: `${PROD_API_HOSTNAME}/v5/workflows`, // update to use v6 | ||
| REVIEW_TYPE_API_URL: `${PROD_API_HOSTNAME}/v6/reviewTypes`, | ||
| REVIEWS_API_URL: `${PROD_API_HOSTNAME}/v6/reviews`, | ||
| SCORECARDS_API_URL: `${PROD_API_HOSTNAME}/v6/scorecards`, | ||
| WORKFLOWS_API_URL: `${PROD_API_HOSTNAME}/v6/workflows`, | ||
| SUBMISSION_REVIEW_APP_URL: `https://submission-review.${DOMAIN}/challenges`, | ||
| STUDIO_URL: `https://studio.${DOMAIN}`, | ||
| CONNECT_APP_URL: `https://connect.${DOMAIN}`, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[⚠️
correctness]The
PROJECT_API_URLis still using versionv5, while other URLs have been updated tov6. Ensure this is intentional and verify if it should be updated to maintain consistency across API versions.