Skip to content

Commit

Permalink
Merge pull request #778 from DTS-STN/develop
Browse files Browse the repository at this point in the history
Sync for Main code freeze for release Beta 1.0.0
  • Loading branch information
MarcoGoC authored Jun 21, 2023
2 parents 54e9fcd + 0e775a0 commit 3e80f8f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{{- $fullName := include "fullname" . -}}
{{- $svcPort := .Values.service.port -}}
apiVersion: v1
kind: List
items:
- apiVersion: networking.k8s.io/v1
kind: Ingress
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extraEnv:
valueFrom:
secretKeyRef:
name: web-example-secret
key: example-secret-password
key: example-secret-password

*/}}
image:
Expand All @@ -34,7 +34,7 @@ ingress:
prod_enabled: {{ requiredEnv "PROD_ENABLED" }}
ssl_cert: service_canada_ca
prod_url: {{ requiredEnv "SUB_DOMAIN" }}.{{ requiredEnv "BASE_DOMAIN" }}
enabled: true
enabled: {{ requiredEnv "ALPHA_ENABLED" }}
annotations:
{{ if (eq .Environment.Name "prototype")}}
cert-manager.io/cluster-issuer: letsencrypt-prod-alpha-sc
Expand Down
9 changes: 9 additions & 0 deletions utils/api/benefitHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -876,6 +876,15 @@ export class BenefitHandler {
.calculatedBasedOnIndividualIncome
)

if (
!allResults.partner.gis.cardDetail.collapsedText.includes(
this.translations.detailWithHeading.partnerEligible
)
)
allResults.partner.gis.cardDetail.collapsedText.unshift(
this.translations.detailWithHeading.partnerEligible
)

// If client is eligible for ALW, need to recalculate estimate based on individual income
if (clientAlw.eligibility.result === 'eligible') {
if (
Expand Down

0 comments on commit 3e80f8f

Please sign in to comment.