diff --git a/backend/src/Squidex.Domain.Apps.Entities/Apps/Indexes/AppsIndex.cs b/backend/src/Squidex.Domain.Apps.Entities/Apps/Indexes/AppsIndex.cs index 211ba1577..3056ef65d 100644 --- a/backend/src/Squidex.Domain.Apps.Entities/Apps/Indexes/AppsIndex.cs +++ b/backend/src/Squidex.Domain.Apps.Entities/Apps/Indexes/AppsIndex.cs @@ -37,6 +37,7 @@ namespace Squidex.Domain.Apps.Entities.Apps.Indexes Guard.NotNull(replicatedCache, nameof(replicatedCache)); this.grainFactory = grainFactory; + this.replicatedCache = replicatedCache; } diff --git a/backend/src/Squidex.Domain.Apps.Entities/Schemas/Indexes/SchemasIndex.cs b/backend/src/Squidex.Domain.Apps.Entities/Schemas/Indexes/SchemasIndex.cs index 81be73024..c8c4f95d0 100644 --- a/backend/src/Squidex.Domain.Apps.Entities/Schemas/Indexes/SchemasIndex.cs +++ b/backend/src/Squidex.Domain.Apps.Entities/Schemas/Indexes/SchemasIndex.cs @@ -34,6 +34,7 @@ namespace Squidex.Domain.Apps.Entities.Schemas.Indexes Guard.NotNull(replicatedCache, nameof(replicatedCache)); this.grainFactory = grainFactory; + this.replicatedCache = replicatedCache; }