Skip to content

Commit

Permalink
Merge branch 'main' into MIJN-7157-rvv-fat
Browse files Browse the repository at this point in the history
  • Loading branch information
janthijs authored Nov 10, 2023
2 parents 18259d4 + 2ea321e commit 61e98b9
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
7 changes: 2 additions & 5 deletions azure-pipeline-bff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ trigger:
batch: true
branches:
include:
- ontwikkelen
- testen
- main
- az-acceptance
paths:
include:
- src/server
Expand Down Expand Up @@ -51,9 +50,6 @@ parameters:
default: false

variables:
- ${{ if eq(variables['Build.SourceBranchName'], 'ontwikkelen') }}:
- name: dtapName
value: o
- ${{ if or(eq(variables['Build.SourceBranchName'], 'testen'), eq(variables['Build.Reason'], 'PullRequest')) }}:
- name: dtapName
value: t
Expand All @@ -80,3 +76,4 @@ jobs:
btdAppBFF: true
btdAppUI: false
updateAppSettings: ${{ parameters.updateAppSettings }}
aquaScan: ${{ eq(variables['Build.Reason'], 'PullRequest') }}
4 changes: 2 additions & 2 deletions azure-pipeline-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ trigger:
batch: true
branches:
include:
- ontwikkelen
- testen
- main
- az-acceptance
paths:
include:
- src/client
Expand Down Expand Up @@ -81,3 +80,4 @@ jobs:
btdAppBFF: false
btdAppUI: true
updateAppSettings: ${{ parameters.updateAppSettings }}
aquaScan: ${{ eq(variables['Build.Reason'], 'PullRequest') }}
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 @@ -230,7 +230,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

0 comments on commit 61e98b9

Please sign in to comment.