Skip to content

Commit

Permalink
fix: add AddressDetailWithParent projection to projector
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneD committed Nov 20, 2023
1 parent 6123621 commit b6b994c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ namespace AddressRegistry.Projector.Infrastructure.Modules
using AddressRegistry.Projections.Legacy;
using AddressRegistry.Projections.Legacy.AddressDetail;
using AddressRegistry.Projections.Legacy.AddressDetailV2;
using AddressRegistry.Projections.Legacy.AddressDetailV2WithParent;
using AddressRegistry.Projections.Legacy.AddressList;
using AddressRegistry.Projections.Legacy.AddressListV2;
using AddressRegistry.Projections.Legacy.AddressSyndication;
Expand Down Expand Up @@ -207,6 +208,9 @@ private void RegisterLegacyProjectionsV2(ContainerBuilder builder)
.RegisterProjections<AddressDetailProjectionsV2, LegacyContext>(
() => new AddressDetailProjectionsV2(),
ConnectedProjectionSettings.Default)
.RegisterProjections<AddressDetailProjectionsV2WithParent, LegacyContext>(
() => new AddressDetailProjectionsV2WithParent(),
ConnectedProjectionSettings.Default)
.RegisterProjections<AddressListProjectionsV2, LegacyContext>(ConnectedProjectionSettings.Default)
.RegisterProjections<AddressSyndicationProjections, LegacyContext>(
() => new AddressSyndicationProjections(),
Expand Down

0 comments on commit b6b994c

Please sign in to comment.