Skip to content

Commit

Permalink
fix: re-add
Browse files Browse the repository at this point in the history
  • Loading branch information
janthijs committed Dec 15, 2023
1 parent 5e6820e commit f5c9e98
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,14 +203,14 @@ exports[`Vergunningen service > fetchVergunningenNotifications commercial 1`] =
{
"chapter": "VERGUNNINGEN",
"datePublished": "2023-04-25T00:00:00",
"description": "Uw aanvraag voor een rvv-verkeersontheffing is in behandeling genomen.",
"description": "Uw aanvraag voor een RVV-verkeersontheffing is in behandeling genomen.",
"id": "vergunning-1656544835-notification",
"link": {
"title": "Bekijk details",
"to": "/vergunningen/rvv-hele-stad/1656544835",
},
"subject": "1656544835",
"title": "Aanvraag rvv-verkeersontheffing in behandeling",
"title": "Aanvraag RVV-verkeersontheffing in behandeling",
},
{
"chapter": "VERGUNNINGEN",
Expand Down Expand Up @@ -735,14 +735,14 @@ exports[`Vergunningen service > fetchVergunningenNotifications private 1`] = `
{
"chapter": "VERGUNNINGEN",
"datePublished": "2023-04-25T00:00:00",
"description": "Uw aanvraag voor een rvv-verkeersontheffing is in behandeling genomen.",
"description": "Uw aanvraag voor een RVV-verkeersontheffing is in behandeling genomen.",
"id": "vergunning-1656544835-notification",
"link": {
"title": "Bekijk details",
"to": "/vergunningen/rvv-hele-stad/1656544835",
},
"subject": "1656544835",
"title": "Aanvraag rvv-verkeersontheffing in behandeling",
"title": "Aanvraag RVV-verkeersontheffing in behandeling",
},
{
"chapter": "VERGUNNINGEN",
Expand Down
20 changes: 19 additions & 1 deletion src/server/services/vergunningen/vergunningen-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,25 @@ export const notificationContent: NotificationContent = {
description: () => 'Uw eigen parkeerplaats is opgezegd.',
},
},
[CaseType.RVVHeleStad]: defaultNotificationLabels.short,
[CaseType.RVVHeleStad]: {
requested: {
...requestedShort,
title: (item) => `Aanvraag ${item.title} ontvangen`,
description: (item) => `Uw aanvraag voor een ${item.title} is ontvangen.`,
},
inProgress: {
...inProgressShort,
title: (item) => `Aanvraag ${item.title} in behandeling`,
description: (item) =>
`Uw aanvraag voor een ${item.title} is in behandeling genomen.`,
},
done: {
...doneShort,
title: (item) => `Aanvraag ${item.title} afgehandeld`,
description: (item) =>
`Uw aanvraag voor een ${item.title} is afgehandeld.`,
},
},
[CaseType.RVVSloterweg]: {
requested: {
...requestedShort,
Expand Down

0 comments on commit f5c9e98

Please sign in to comment.