Skip to content

Commit

Permalink
Merge pull request #904 from bcgov/feature/cfgResForm
Browse files Browse the repository at this point in the history
Config reservation form, set versions
  • Loading branch information
loneil authored Nov 1, 2023
2 parents 827f812 + f807bdd commit 0d268c0
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 8 deletions.
38 changes: 38 additions & 0 deletions deploy/traction/values-development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,44 @@ ui:
active: true
authority: https://dev.loginproxy.gov.bc.ca/auth/realms/digitaltrust-nrm
jwksUri: https://dev.loginproxy.gov.bc.ca/auth/realms/digitaltrust-nrm/protocol/openid-connect/certs
reservationForm: >-
{
"formDataSchema": {
"type": "object",
"properties": {
"ministry": {
"type": "string"
},
"contactName": {
"type": "string"
},
"tenantReason": {
"type": "string"
}
},
"required": []
},
"formUISchema": {
"type": "VerticalLayout",
"elements": [
{
"type": "Control",
"scope": "#/properties/ministry",
"label": "Ministry"
},
{
"type": "Control",
"scope": "#/properties/contactName",
"label": "Contact Name"
},
{
"type": "Control",
"scope": "#/properties/tenantReason",
"label": "Purpose of Tenant"
},
]
}
}
ariesDetails:
ledgerDescription: "bcovrin-test"
smtp:
Expand Down
4 changes: 2 additions & 2 deletions services/tenant-ui/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/tenant-ui/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tenant-ui-frontend",
"private": true,
"version": "0.3.5",
"version": "0.3.6",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
4 changes: 2 additions & 2 deletions services/tenant-ui/frontend/src/components/about/Traction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<div class="col-12 md:col-6">
<strong>{{ $t('about.traction.info') }}</strong>
<p class="my-0">
{{ $t('about.traction.tractionVersion', { version: '0.3.5' }) }}
{{ $t('about.traction.tractionVersion', { version: '0.3.6' }) }}
</p>
<p class="mt-0">
{{ $t('about.traction.uiVersion', { version: '0.3.5' }) }}
{{ $t('about.traction.uiVersion', { version: '0.3.6' }) }}
</p>
</div>

Expand Down
4 changes: 2 additions & 2 deletions services/tenant-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/tenant-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tenant-ui",
"version": "0.3.5",
"version": "0.3.6",
"description": "",
"main": "index.ts",
"scripts": {
Expand Down

0 comments on commit 0d268c0

Please sign in to comment.