Added endpoint to update presentationInfos and added these info to the get

This commit is contained in:
Dominic Villemure
2024-12-02 08:21:50 -05:00
parent cd827588a1
commit 281219c975
13 changed files with 1707 additions and 4 deletions

View File

@@ -50,6 +50,9 @@ public class ContentDbContext(
.OwnsOne<Images>(x => x.Images)
.ToTable(nameof(Images));
modelBuilder
.Entity<Creator>()
.OwnsOne<PresentationInfos>(x => x.PresentationInfos)
.ToTable(nameof(PresentationInfos));
}
}