Skip to content

Commit

Permalink
test: OR-1993 fix detailVerenigingResponse template in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Talboom authored and QuintenGreenstack committed Nov 28, 2023
1 parent 8fd079b commit 8fd861e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
"bron": "{{contactgegeven.bron}}"
},
{{end}}
],
"hoofdactiviteitenVerenigingsloket": [
],
"hoofdactiviteitenVerenigingsloket": [
{{for hoofdactiviteit in vereniging.hoofdactiviteiten}}
{
"code": "{{hoofdactiviteit.code}}",
"naam": "{{hoofdactiviteit.naam}}"
},
{{end}}
"naam": "{{hoofdactiviteit.naam
}}"
},{{end}}
],
"doelgroep": {
"minimumleeftijd": {{vereniging.doelgroep.minimumleeftijd}},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ public DetailVerenigingResponseTemplate FromEvent(FeitelijkeVerenigingWerdGeregi
.WithBron(e.Bron);

foreach (var h in e.HoofdactiviteitenVerenigingsloket)
WithHoofdactiviteit(h.Code, h.Beschrijving);
WithHoofdactiviteit(h.Code, h.Naam);

foreach (var c in e.Contactgegevens)
{
Expand Down

0 comments on commit 8fd861e

Please sign in to comment.