Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MIJN-6502 - FAT Eigenparkeerplaats #1032

Merged
merged 2 commits into from
Nov 10, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ exports[`Vergunningen service > fetchVergunningenNotifications 1`] = `
{
"chapter": "VERGUNNINGEN",
"datePublished": "2023-10-10",
"description": "Uw aanvraag voor een eigen parkeerplaats is ontvangen.",
"description": "Wij hebben uw aanvraag eigen parkeerplaats ontvangen.",
"id": "vergunning-1817502388-notification",
"link": {
"title": "Bekijk details",
Expand Down
18 changes: 17 additions & 1 deletion src/server/services/vergunningen/vergunningen-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,23 @@ export const notificationContent: NotificationContent = {
[CaseType.OnttrekkingsvergunningSloop]: defaultNotificationLabels.short,
[CaseType.VormenVanWoonruimte]: defaultNotificationLabels.long,
[CaseType.ExploitatieHorecabedrijf]: defaultNotificationLabels.short,
[CaseType.EigenParkeerplaats]: defaultNotificationLabels.short,
[CaseType.EigenParkeerplaats]: {
requested: {
...requestedShort,
description: () =>
'Wij hebben uw aanvraag eigen parkeerplaats ontvangen.',
},
inProgress: {
...inProgressShort,
description: () =>
'Wij hebben uw aanvraag eigen parkeerplaats in behandeling genomen.',
},
done: {
...doneShort,
description: () =>
'Wij hebben uw aanvraag eigen parkeerplaats afgehandeld.',
},
},
[CaseType.EigenParkeerplaatsOpheffen]: {
requested: {
...requestedShort,
Expand Down
Loading