Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion strr-api/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "strr-api"
version = "0.0.67"
version = "0.0.68"
description = ""
authors = ["thorwolpert <thor@wolpert.ca>"]
license = "BSD 3-Clause"
Expand Down
8 changes: 4 additions & 4 deletions strr-api/src/strr_api/models/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,8 @@ class ApplicationSerializer:
Application.Status.PROVISIONAL_REVIEW: "Approved – Provisional",
Application.Status.FULL_REVIEW: "Pending Approval",
Application.Status.DECLINED: "Declined",
Application.Status.NOC_PENDING: "Notice of Consideration - Pending",
Application.Status.NOC_EXPIRED: "Notice of Consideration - Expired",
Application.Status.NOC_PENDING: "Notice of Consideration",
Application.Status.NOC_EXPIRED: "Pending Review",
}

HOST_ACTIONS = {Application.Status.PAYMENT_DUE: ["SUBMIT_PAYMENT"]}
Expand All @@ -438,8 +438,8 @@ class ApplicationSerializer:
Application.Status.PROVISIONAL_REVIEW: "Provisional Examination",
Application.Status.FULL_REVIEW: "Full Examination",
Application.Status.DECLINED: "Declined",
Application.Status.NOC_PENDING: "Notice of Consideration - Pending",
Application.Status.NOC_EXPIRED: "Notice of Consideration - Expired",
Application.Status.NOC_PENDING: "NOC - Pending",
Application.Status.NOC_EXPIRED: "NOC - Expired",
}

EXAMINER_ACTIONS = {
Expand Down
2 changes: 1 addition & 1 deletion strr-base-web/app/locales/en-CA.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default {
},
fileType: {
title: 'Invalid File Type',
description: 'Only PDF files are supported. Please upload a PDF document.'
description: 'Only PDF, jpeg, or jpg files are supported. Please upload a PDF, jpeg, or jpg.'
},
generic: {
title: 'Error Uploading Document',
Expand Down
2 changes: 1 addition & 1 deletion strr-base-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "strr-base-web",
"private": true,
"type": "module",
"version": "0.0.16",
"version": "0.0.17",
"scripts": {
"build-check": "nuxt build",
"build": "nuxt generate",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ onMounted(async () => {
:error="isComplete && hasFormErrors(docFormRef, ['documentUpload'])"
:is-required="docStore.requiredDocs.length > 0"
:help-id="docUploadHelpId"
accept="application/pdf"
accept="application/pdf,image/jpeg"
@change="docStore.addStoredDocument"
@cancel="docStore.selectedDocType = undefined"
@error="e => strrModal.openErrorModal(
Expand Down
2 changes: 1 addition & 1 deletion strr-host-pm-web/app/locales/en-CA.ts
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ export default {
},
hint: {
strataRefCode: 'This is a unique code for each registered strata hotel. Ask the strata hotel management for this code.',
docUpload: 'File must be a PDF. Maximum 10 MB.',
docUpload: 'File must be a PDF, jpeg, or jpg. Maximum 10 MB.',
autocomplete: 'For example: 123 - 456 Street Name Victoria BC V8V 2V2'
},
page: {
Expand Down
2 changes: 1 addition & 1 deletion strr-host-pm-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "strr-host-pm-web",
"private": true,
"type": "module",
"version": "1.2.8",
"version": "1.2.9",
"scripts": {
"build-check": "nuxt build",
"build": "nuxt generate",
Expand Down
4 changes: 2 additions & 2 deletions strr-strata-web/app/components/form/StrataDetails.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import type { Form } from '#ui/types'
import { z } from 'zod'
import type { Form } from '#ui/types'

const rtc = useRuntimeConfig().public
const strataModal = useStrataModals()
Expand Down Expand Up @@ -268,7 +268,7 @@ onMounted(async () => {
<DocumentUploadButton
id="supporting-documents"
:label="$t('label.chooseDocsOpt')"
accept="application/pdf"
accept="application/pdf,image/jpeg"
:is-required="false"
:is-invalid="isComplete && hasFormErrors(documentFormRef, ['documents'])"
help-id="supporting-documents-help"
Expand Down
2 changes: 1 addition & 1 deletion strr-strata-web/app/locales/en-CA.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default {
STRATA_HOTEL_DOCUMENTATION: 'Supporting strata-titled hotel or motel documentation'
},
hint: {
docUpload: 'File must be a PDF. Maximum 10 MB.'
docUpload: 'File must be a PDF, jpeg, or jpg. Maximum 10 MB.'
},
ConnectFeeWidget: {
feeSummary: {
Expand Down
2 changes: 1 addition & 1 deletion strr-strata-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "strr-strata-web",
"private": true,
"type": "module",
"version": "1.1.10",
"version": "1.1.11",
"scripts": {
"build-check": "nuxt build",
"build": "nuxt generate",
Expand Down