Browse Source

Fixed the appID for assets.

pull/199/head
Sebastian Stehle 8 years ago
parent
commit
efa7b0f013
  1. 3
      src/Squidex.Domain.Apps.Read.MongoDb/Assets/MongoAssetEntity.cs
  2. 3
      src/Squidex.Domain.Apps.Read.MongoDb/Contents/MongoContentEntity.cs
  3. 3
      src/Squidex.Domain.Apps.Read.MongoDb/History/MongoHistoryEventEntity.cs

3
src/Squidex.Domain.Apps.Read.MongoDb/Assets/MongoAssetEntity.cs

@ -19,7 +19,8 @@ namespace Squidex.Domain.Apps.Read.MongoDb.Assets
IAssetEntity, IAssetEntity,
IUpdateableEntityWithVersion, IUpdateableEntityWithVersion,
IUpdateableEntityWithCreatedBy, IUpdateableEntityWithCreatedBy,
IUpdateableEntityWithLastModifiedBy IUpdateableEntityWithLastModifiedBy,
IUpdateableEntityWithAppRef
{ {
[BsonRequired] [BsonRequired]
[BsonElement] [BsonElement]

3
src/Squidex.Domain.Apps.Read.MongoDb/Contents/MongoContentEntity.cs

@ -23,7 +23,8 @@ namespace Squidex.Domain.Apps.Read.MongoDb.Contents
IContentEntity, IContentEntity,
IUpdateableEntityWithVersion, IUpdateableEntityWithVersion,
IUpdateableEntityWithCreatedBy, IUpdateableEntityWithCreatedBy,
IUpdateableEntityWithLastModifiedBy IUpdateableEntityWithLastModifiedBy,
IUpdateableEntityWithAppRef
{ {
private NamedContentData data; private NamedContentData data;

3
src/Squidex.Domain.Apps.Read.MongoDb/History/MongoHistoryEventEntity.cs

@ -17,7 +17,8 @@ namespace Squidex.Domain.Apps.Read.MongoDb.History
public sealed class MongoHistoryEventEntity : MongoEntity, public sealed class MongoHistoryEventEntity : MongoEntity,
IEntityWithAppRef, IEntityWithAppRef,
IUpdateableEntityWithVersion, IUpdateableEntityWithVersion,
IUpdateableEntityWithCreatedBy IUpdateableEntityWithCreatedBy,
IUpdateableEntityWithAppRef
{ {
[BsonRequired] [BsonRequired]
[BsonElement] [BsonElement]

Loading…
Cancel
Save