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 36535e4 commit 9e125d2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ public class Relatie
/// <summary>
/// Het type relatie
/// </summary>
[DataMember(Name = "Type")]
public string Type { get; set; } = null!;
[DataMember(Name = "relatietype")]
public string Relatietype { get; set; } = null!;

/// <summary>
/// de gerelateerde vereniging
Expand Down
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 9e125d2

Please sign in to comment.