From b1bcabfdc4ca4cff3626e7ae660c47b5f84053e6 Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Wed, 29 Oct 2025 17:31:26 +0200 Subject: [PATCH 1/3] update review app host --- src/lib/config/hosts.ts | 2 +- src/lib/config/nav-menu/all-nav-items.config.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/config/hosts.ts b/src/lib/config/hosts.ts index 2d27c0a..9e1d02e 100644 --- a/src/lib/config/hosts.ts +++ b/src/lib/config/hosts.ts @@ -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`; diff --git a/src/lib/config/nav-menu/all-nav-items.config.ts b/src/lib/config/nav-menu/all-nav-items.config.ts index 0c47f62..823d3fc 100644 --- a/src/lib/config/nav-menu/all-nav-items.config.ts +++ b/src/lib/config/nav-menu/all-nav-items.config.ts @@ -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, @@ -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', }, From 42b5c51fc54ec39c28a6472429c5704802b1734e Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Wed, 29 Oct 2025 17:31:43 +0200 Subject: [PATCH 2/3] deploy --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6cd09e8..561def1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -221,6 +221,7 @@ workflows: - dev - TOP-2044_show-signin-modal - maintenance + - review-app - deployProd: context: org-global From 4d5d409bfd382b8fe819b3da1a181eec0baf6cad Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Wed, 29 Oct 2025 17:34:22 +0200 Subject: [PATCH 3/3] fix types --- types/src/lib/config/hosts.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/src/lib/config/hosts.d.ts b/types/src/lib/config/hosts.d.ts index 3e7051c..a529842 100644 --- a/types/src/lib/config/hosts.d.ts +++ b/types/src/lib/config/hosts.d.ts @@ -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;