diff --git a/.env.example b/.env.example index 6deb2e19e..39bf27cf5 100644 --- a/.env.example +++ b/.env.example @@ -9,6 +9,7 @@ VUE_APP_DASHBOARD_URL="https://dev.business.bcregistry.gov.bc.ca/" VUE_APP_ENTITY_SELECTOR_URL="https://entity-selection-dev.apps.silver.devops.gov.bc.ca/" VUE_APP_PAYMENT_PORTAL_URL="https://dev.account.bcregistry.gov.bc.ca/makepayment/" VUE_APP_SITEMINDER_LOGOUT_URL="https://logontest7.gov.bc.ca/clp-cgi/logoff.cgi" +VUE_APP_SOCIETIES_ONLINE_HOME_URL="https://dev.bcregistry.ca/societies/" #vaults API VUE_APP_AUTH_API_URL="https://auth-api-dev.apps.silver.devops.gov.bc.ca" diff --git a/devops/vaults.env b/devops/vaults.env index bdb670c90..2412d1b1f 100644 --- a/devops/vaults.env +++ b/devops/vaults.env @@ -10,6 +10,7 @@ VUE_APP_DASHBOARD_URL="op://web-url/$APP_ENV/business/DASHBOARD_URL" VUE_APP_ENTITY_SELECTOR_URL="op://web-url/$APP_ENV/entity-selector/ENTITY_SELECTOR_URL" VUE_APP_PAYMENT_PORTAL_URL="op://web-url/$APP_ENV/pay/PAYMENT_PORTAL_URL" VUE_APP_SITEMINDER_LOGOUT_URL="op://web-url/$APP_ENV/siteminder/SITEMINDER_LOGOUT_URL" +VUE_APP_SOCIETIES_ONLINE_HOME_URL="op://web-url/$APP_ENV/bcregistry/SOCIETIES_URL" #vaults API VUE_APP_AUTH_API_URL="op://API/$APP_ENV/auth-api/AUTH_API_URL" diff --git a/package-lock.json b/package-lock.json index 7b69ee017..77613cc3a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "name-request", - "version": "5.0.21", + "version": "5.0.22", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index c8b0bb5fc..d413998f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "name-request", - "version": "5.0.21", + "version": "5.0.22", "private": true, "appName": "Name Request UI", "sbcName": "SBC Common Components", diff --git a/src/components/common/names-capture.vue b/src/components/common/names-capture.vue index f637a7aeb..0cfb9e032 100644 --- a/src/components/common/names-capture.vue +++ b/src/components/common/names-capture.vue @@ -523,7 +523,7 @@ export default class NamesCapture extends Mixins(CommonMixin) { get entityPhraseRequired (): boolean { if (!this.entity_type_cd) return false - return [EntityType.CC, EntityType.CP].includes(this.entity_type_cd) + return [EntityType.CC, EntityType.CP, EntityType.SO].includes(this.entity_type_cd) } get entityPhraseText (): string { diff --git a/src/components/dialogs/pick-entity-or-conversion.vue b/src/components/dialogs/pick-entity-or-conversion.vue index 6acfae94b..7ec3c52fd 100644 --- a/src/components/dialogs/pick-entity-or-conversion.vue +++ b/src/components/dialogs/pick-entity-or-conversion.vue @@ -86,15 +86,16 @@