Skip to content
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
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ workflows:
- dev
- TOP-2044_show-signin-modal
- maintenance
- review-app

- deployProd:
context: org-global
Expand Down
2 changes: 1 addition & 1 deletion src/lib/config/hosts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const THRIVE_HOST: string = {
}[HOST_ENV] || `https://www.${TC_DOMAIN}`;

export const APP_AUTH_CONNECTOR: string = `https://accounts-auth0.${TC_DOMAIN}`;
export const ONLINE_REVIEW_HOST: string = `https://software.${TC_DOMAIN}`;
export const REVIEW_APP_HOST: string = `https://review.${TC_DOMAIN}`;
export const TCACADEMY_HOST: string = `https://academy.${TC_DOMAIN}`;
export const SELF_SERVICE_HOST: string = `https://work.${TC_DOMAIN}`;
export const TC_API_HOST: string = `https://api.${TC_DOMAIN}/v6`;
Expand Down
4 changes: 2 additions & 2 deletions src/lib/config/nav-menu/all-nav-items.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
COMMUNITY_HOST,
CONNECT_HOST,
COPILOT_PORTAL_HOST,
ONLINE_REVIEW_HOST,
REVIEW_APP_HOST,
TALENT_SEARCH_HOST,
TCACADEMY_HOST,
PLATFORM_APP_HOST,
Expand Down Expand Up @@ -142,7 +142,7 @@ export const allNavItems: {[key: string]: NavMenuItem} = {
},
review: {
label: 'Review',
url: ONLINE_REVIEW_HOST,
url: REVIEW_APP_HOST,
icon: 'review',
description: 'Review submissions',
},
Expand Down
2 changes: 1 addition & 1 deletion types/src/lib/config/hosts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export declare const CHALLENGE_HOST: string;
export declare const COMMUNITY_HOST: string;
export declare const THRIVE_HOST: string;
export declare const APP_AUTH_CONNECTOR: string;
export declare const ONLINE_REVIEW_HOST: string;
export declare const REVIEW_APP_HOST: string;
export declare const TCACADEMY_HOST: string;
export declare const SELF_SERVICE_HOST: string;
export declare const TC_API_HOST: string;
Expand Down