File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ VUE_APP_PATH="/"
33# vaults web-url
44VUE_APP_REGISTRY_HOME_URL = " https://dev.bcregistry.gov.bc.ca/"
55VUE_APP_AUTH_WEB_URL = " https://dev.account.bcregistry.gov.bc.ca/"
6- VUE_APP_BUSINESSES_URL = " https://dev.account.bcregistry.gov.bc.ca/"
76VUE_APP_CORPORATE_ONLINE_URL = " https://www.corporateonline.gov.bc.ca"
87VUE_APP_BUSINESS_DASH_URL = " https://dev.business-dashboard.bcregistry.gov.bc.ca/"
98VUE_APP_BUSINESS_REGISTRY_URL = " https://dev.business-registry-dashboard.bcregistry.gov.bc.ca/"
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ VUE_APP_PATH=/
44# vaults web-url
55VUE_APP_REGISTRY_HOME_URL = " op://web-url/$APP_ENV /registry/REGISTRY_HOME_URL"
66VUE_APP_AUTH_WEB_URL = " op://web-url/$APP_ENV /auth-web/AUTH_WEB_URL"
7- VUE_APP_BUSINESSES_URL = " op://web-url/$APP_ENV /business/BUSINESSES_URL"
87VUE_APP_CORPORATE_ONLINE_URL = " op://web-url/$APP_ENV /bcregistry/COLIN_URL"
98VUE_APP_BUSINESS_DASH_URL = " op://web-url/$APP_ENV /business-dash/BUSINESS_DASH_URL"
109VUE_APP_BUSINESS_REGISTRY_URL = " op://web-url/$APP_ENV /business-registry-ui/BUSINESS_REGISTRY_URL"
Original file line number Diff line number Diff line change 11{
22 "name" : " name-request" ,
3- "version" : " 5.5.45 " ,
3+ "version" : " 5.5.46 " ,
44 "private" : true ,
55 "appName" : " Name Request UI" ,
66 "sbcName" : " SBC Common Components" ,
Original file line number Diff line number Diff line change @@ -92,10 +92,10 @@ export default class AffiliationErrorDialog extends Vue {
9292 }
9393
9494 get businessRegistryUrl (): string {
95- const businessesUrl = sessionStorage .getItem (' BUSINESSES_URL ' )
95+ const businessesUrl = sessionStorage .getItem (' BUSINESS_REGISTRY_URL ' )
9696 // NB: fall back is user's default account
9797 const accountId = JSON .parse (sessionStorage .getItem (' CURRENT_ACCOUNT' )).id || 0
98- return ` ${businessesUrl }account/${accountId }/business `
98+ return ` ${businessesUrl }account/${accountId } `
9999 }
100100
101101 protected hideModal (): void {
Original file line number Diff line number Diff line change @@ -6,17 +6,14 @@ export async function getConfig (): Promise<EnvConfigI> {
66 // get config from environment
77 const windowLocationOrigin = window . location . origin
88
9- if ( ! { appBaseURL } || ! windowLocationOrigin ) {
9+ if ( ! appBaseURL || ! windowLocationOrigin ) {
1010 return Promise . reject ( new Error ( 'Missing environment variables' ) )
1111 }
1212 axios . defaults . baseURL = appBaseURL
1313
1414 const paymentPortalUrl : string = process . env . VUE_APP_PAYMENT_PORTAL_URL
1515 sessionStorage . setItem ( 'PAYMENT_PORTAL_URL' , paymentPortalUrl )
1616
17- const businessesUrl : string = process . env . VUE_APP_BUSINESSES_URL
18- sessionStorage . setItem ( 'BUSINESSES_URL' , businessesUrl )
19-
2017 const corporateOnlineUrl : string = process . env . VUE_APP_CORPORATE_ONLINE_URL
2118 sessionStorage . setItem ( 'CORPORATE_ONLINE_URL' , corporateOnlineUrl )
2219
Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ export function getRegistryHomeBreadcrumb (): BreadcrumbIF {
2323}
2424
2525export function getStaffDashboardBreadcrumb ( ) : BreadcrumbIF {
26- const businessUrl = sessionStorage . getItem ( 'BUSINESSES_URL ' )
26+ const businessUrl = sessionStorage . getItem ( 'AUTH_WEB_URL ' )
2727 return {
2828 text : 'Staff Dashboard' ,
29- href : `${ businessUrl } staff/${ getParams ( ) } `
29+ href : `${ businessUrl } staff/dashboard/active ${ getParams ( ) } `
3030 }
3131}
You can’t perform that action at this time.
0 commit comments