Skip to content
Merged
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
4 changes: 2 additions & 2 deletions schemas/get-birth-certificate.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@
"name": "email",
"type": "email",
"label": "Email address",
"required": false
"required": true
},
{
"name": "telephoneNumber",
"type": "string",
"label": "Telephone number",
"required": false
"required": true
}
]
},
Expand Down
13 changes: 11 additions & 2 deletions schemas/get-death-certificate.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
]
},
{
"name": "relationship",
"name": "relationshipToPerson",
"type": "string",
"label": "Tell us your relationship with the deceased",
"required": true,
Expand All @@ -132,7 +132,16 @@
}
},
{
"name": "reasonForRequest",
"name": "relationshipOtherDescription",
"type": "string",
"label": "Please describe your relationship",
"required": false,
"validations": {
"max": 100
}
},
{
"name": "reasonForCertificate",
"type": "string",
"label": "Tell us about why you need this certificate",
"required": true,
Expand Down
2 changes: 1 addition & 1 deletion src/email/templates/death-certificate.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<strong>Application Submitted:</strong>
{{processedAt}}<br />
<strong>Relationship to Deceased:</strong>
{{relationship}}
{{relationshipToPerson}}
</div>

<!-- Applicant Details -->
Expand Down