Skip to content

Commit

Permalink
fix: or-2593 dont make corresponderendeVCodes empty when applying cha…
Browse files Browse the repository at this point in the history
…nges for beheer zoeken
  • Loading branch information
emalfroy committed Jan 14, 2025
1 parent d5d3ad3 commit 387dbd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public async Task Handle(EventEnvelope<FeitelijkeVerenigingWerdGeregistreerd> me

Werkingsgebieden = [],
Lidmaatschappen = [],
CorresponderendeVCodes = [],
Sleutels =
[
new VerenigingZoekDocument.Sleutel
Expand Down Expand Up @@ -103,6 +104,7 @@ public async Task Handle(EventEnvelope<VerenigingMetRechtspersoonlijkheidWerdGer
HoofdactiviteitenVerenigingsloket = [],
Werkingsgebieden = [],
Lidmaatschappen = [],
CorresponderendeVCodes = [],
Sleutels =
[
new VerenigingZoekDocument.Sleutel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class VerenigingZoekDocument
public string JsonLdMetadataType { get; set; }
public string VCode { get; set; } = null!;

public string[] CorresponderendeVCodes { get; set; } = [];
public string[] CorresponderendeVCodes { get; set; } = null!;
public VerenigingsType Verenigingstype { get; set; } = null!;
public string Naam { get; set; } = null!;
public string Roepnaam { get; set; } = null!;
Expand Down

0 comments on commit 387dbd4

Please sign in to comment.