diff --git a/auth-api/migrations/README b/auth-api/migrations/README index 28f89c6bd6..d516c31857 100644 --- a/auth-api/migrations/README +++ b/auth-api/migrations/README @@ -1,3 +1,3 @@ Generic single-database configuration. -1. Proper usage of migrations: python manage.py db migrate +1. Add a new migration: /migrations poetry run alembic revision --autogenerate -m "migration message" diff --git a/auth-api/migrations/alembic.ini b/auth-api/migrations/alembic.ini index ad7b0ef539..3b21993916 100644 --- a/auth-api/migrations/alembic.ini +++ b/auth-api/migrations/alembic.ini @@ -2,6 +2,7 @@ [alembic] # template used to generate migration files +script_location = . file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(rev)s_%%(slug)s # set to 'true' to run the environment during diff --git a/auth-web/src/assets/scss/base.scss b/auth-web/src/assets/scss/base.scss index 9da41444f8..9cdab6d2a4 100644 --- a/auth-web/src/assets/scss/base.scss +++ b/auth-web/src/assets/scss/base.scss @@ -193,3 +193,9 @@ legend { display: flex; align-items: flex-start; } + +.product-card-contents{ + hr{ + border-top: 1px solid $gray4; + } +} diff --git a/auth-web/src/locales/en.json b/auth-web/src/locales/en.json index 1af8bf7690..67666ed3bb 100644 --- a/auth-web/src/locales/en.json +++ b/auth-web/src/locales/en.json @@ -144,7 +144,9 @@ "mhrStaffCodeSubtitle": "Select this if you need to search for manufactured homes in BC or complete a combined Manufactured Home and Personal Property Registry search.", "mhrCodeSubtitle": "Select this if you want to search for manufactured homes, and search for personal property legal claims on manufactured homes.", "mhrCodeNote": "Note: You can request Qualified Supplier access from your Manufactured Home Registry
(or Asset Registries) page once you have added this product to your account.", + "strrCodeNote": "
Product Fee:   Statutory Fee: Yes
  Service Fee: $ 1.50
", "vsCodeSubtitle": "

Select this if you need to register the location of a will by filing a wills notice or search for a wills notice as part of an estate probate.

", + "strrCodeSubtitle": "Select this product if you need to register your short-term rental property, platform service provider, or strata-titled hotel or motel with the province.", "bcaCodeSubtitle": "Select this for access to BC Assessment's real property information database.", "esraCodeSubtitle": "Select this if you need to identify properties with environmental records submitted under Part 4 of B.C.'s Environmental Management Act.", "rptCodeDescription": "

", @@ -158,6 +160,7 @@ "mhr_qshmCodeDescription": "

Qualified Supplier – Home Manufacturers

", "mhr_qshdCodeDescription": "

Qualified Supplier – Home Dealers

", "vsCodeDescription": "

The search and registration products are intended for the exclusive use of solicitors and notaries only. To add this product, accept the Terms of Service. Review the terms and check the box below if you confirm. BC Registry staff will review your information and grant access to Wills Registry in 3-4 days if approved.

Learn More

", + "strrCodeDescription": "



", "bcaCodeDescription": "Three reports are available for purchase:", "esraCodeDescription": "Search by the following:", "accountBusinessTypeText": "Select a user type for your BC Registries and Online Service Account:", diff --git a/auth-web/src/resources/display-mappers/product-display.ts b/auth-web/src/resources/display-mappers/product-display.ts index 157a1e4835..35e3a2bed6 100644 --- a/auth-web/src/resources/display-mappers/product-display.ts +++ b/auth-web/src/resources/display-mappers/product-display.ts @@ -10,5 +10,6 @@ export const productDisplay = { [Product.PPR]: 'Personal Property Registry', [Product.RPPR]: 'Restricted Personal Property Registry', [Product.RPT]: 'Rural Property Tax', + [Product.STRR]: 'Short-Term Rental Registry', [Product.VS]: 'Vital Statistics' } diff --git a/auth-web/src/resources/table-headers/transactions-table/headers.ts b/auth-web/src/resources/table-headers/transactions-table/headers.ts index 5e06e0cf41..1952607b5f 100644 --- a/auth-web/src/resources/table-headers/transactions-table/headers.ts +++ b/auth-web/src/resources/table-headers/transactions-table/headers.ts @@ -33,6 +33,7 @@ export const TransactionTableHeaders: BaseTableHeaderI[] = [ { text: productDisplay[Product.PPR], value: Product.PPR }, { text: productDisplay[Product.RPPR], value: Product.RPPR }, { text: productDisplay[Product.RPT], value: Product.RPT }, + { text: productDisplay[Product.STRR], value: Product.STRR }, { text: productDisplay[Product.VS], value: Product.VS } ], label: 'Application Type', diff --git a/auth-web/src/util/constants.ts b/auth-web/src/util/constants.ts index 68ba64a556..8bc9b6bd23 100644 --- a/auth-web/src/util/constants.ts +++ b/auth-web/src/util/constants.ts @@ -641,6 +641,7 @@ export enum Product { PPR = 'PPR', RPPR = 'RPPR', RPT = 'RPT', + STRR = 'STRR', VS = 'VS' }