Skip to content

Commit

Permalink
Add default CHES BCC for dev/test environments
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle1morel committed Apr 5, 2024
1 parent c1dd710 commit b2f4abe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/environments/values.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ config:
enabled: true
configMap:
FRONTEND_APIPATH: api/v1
# FRONTEND_CHES_BCC: ~
FRONTEND_CHES_BCC: [email protected]
FRONTEND_COMS_APIPATH: https://coms-dev.api.gov.bc.ca/api/v1
FRONTEND_COMS_BUCKETID: 1f9e1451-c130-4804-aeb0-b78b5b109c47
FRONTEND_OIDC_AUTHORITY: https://dev.loginproxy.gov.bc.ca/auth/realms/standard
Expand Down
2 changes: 1 addition & 1 deletion .github/environments/values.test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ config:
enabled: true
configMap:
FRONTEND_APIPATH: api/v1
# FRONTEND_CHES_BCC: ~
FRONTEND_CHES_BCC: [email protected]
FRONTEND_COMS_APIPATH: https://coms-test.api.gov.bc.ca/api/v1
FRONTEND_COMS_BUCKETID: a9eabd1d-5f77-4c60-bf6b-83ffa0e21c59
FRONTEND_OIDC_AUTHORITY: https://test.loginproxy.gov.bc.ca/auth/realms/standard
Expand Down
2 changes: 1 addition & 1 deletion app/src/db/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ model submission {
financially_supported_housing_coop Boolean @default(false)
aai_updated Boolean @default(false)
waiting_on String?
bring_forward_date DateTime? @db.Timestamptz(6)
intake_status String?
application_status String?
guidance Boolean @default(false)
Expand All @@ -168,6 +167,7 @@ model submission {
created_at DateTime? @default(now()) @db.Timestamptz(6)
updated_by String?
updated_at DateTime? @db.Timestamptz(6)
bring_forward_date DateTime? @db.Timestamptz(6)
contact_preference String?
contact_applicant_relationship String?
is_rental_unit String @default("Unsure")
Expand Down

0 comments on commit b2f4abe

Please sign in to comment.