Skip to content

Commit

Permalink
21131 - Basic STRR tile add to auth-web for account creation (#3187)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jxio authored Dec 24, 2024
1 parent f7aa1c0 commit 220720e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion auth-api/migrations/README
Original file line number Diff line number Diff line change
@@ -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"
1 change: 1 addition & 0 deletions auth-api/migrations/alembic.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions auth-web/src/assets/scss/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -193,3 +193,9 @@ legend {
display: flex;
align-items: flex-start;
}

.product-card-contents{
hr{
border-top: 1px solid $gray4;
}
}
3 changes: 3 additions & 0 deletions auth-web/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "<b>Note:</b> You can request Qualified Supplier access from your Manufactured Home Registry <br>(or Asset Registries) page once you have added this product to your account.",
"strrCodeNote": "<table> <tr> <td><b>Product Fee:</b></td> <td>&nbsp; Statutory Fee: Yes</td> </tr> <tr> <td></td> <td>&nbsp; Service Fee: $ 1.50</td> </tr> </table>",
"vsCodeSubtitle": "<p>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.</p>",
"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": "<p><ul><li>Search a property's tax amounts over the last 10 years</li><li>Search a property's tax-paid status</li><li>Search a property's legal description</li></ul></p>",
Expand All @@ -158,6 +160,7 @@
"mhr_qshmCodeDescription": "<h4>Qualified Supplier – Home Manufacturers</h4><p class=\"mt-2\"><ul><li>Searches for manufactured homes and for liens on a home</li><li>Transport permits</li><li>Transfer transactions (related to homes manufacturers currently own)</li><li>Registrations</li></ul></p>",
"mhr_qshdCodeDescription": "<h4>Qualified Supplier – Home Dealers</h4><p class=\"mt-2\"><ul><li>Searches for manufactured homes and for liens on a home</li><li>Transport permits</li><li>Transfer due to Sale or Gift</li></ul></p>",
"vsCodeDescription": "<p class='mb-2'><p class='mb-1'>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 <strong>3-4 days</strong> if approved.</p><a href='https://www2.gov.bc.ca/gov/content/life-events/death/wills-registry' target='sbc-auth-wills'>Learn More <span class='mdi mdi-open-in-new'></span></a></p>",
"strrCodeDescription": "<p><ul><li>Register a short-term rental property</li><li>Register a platform service provider</li><li>Register a strata-titled hotel or motel</li><li>Manage and renew registrations</li></ul></p><hr></br>",
"bcaCodeDescription": "Three reports are available for purchase:<ul><li>Owner Location Report</li><li>Assessment Roll Report</li><li>Assessment Inventory Report</li></ul>",
"esraCodeDescription": "Search by the following:<ul><li>Parcel ID (PID)</li><li>Crown Lands PIN</li><li>Crown Lands File Number</li><li>Site ID</li><li>Address</li><li>Area</li></ul>",
"accountBusinessTypeText": "Select a user type for your BC Registries and Online Service Account:",
Expand Down
1 change: 1 addition & 0 deletions auth-web/src/resources/display-mappers/product-display.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
1 change: 1 addition & 0 deletions auth-web/src/util/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,7 @@ export enum Product {
PPR = 'PPR',
RPPR = 'RPPR',
RPT = 'RPT',
STRR = 'STRR',
VS = 'VS'
}

Expand Down

0 comments on commit 220720e

Please sign in to comment.