Display chapter reviews in volume page

This commit is contained in:
Amelia 2025-04-25 22:57:45 +02:00
parent 85b6f107bc
commit e0b27f464f
No known key found for this signature in database
GPG key ID: D6D0ECE365407EAA
10 changed files with 124 additions and 36 deletions

View file

@ -101,6 +101,12 @@ public class AutoMapperProfiles : Profile
.ForMember(dest => dest.LibraryId,
opt =>
opt.MapFrom(src => src.Series.LibraryId))
.ForMember(dest => dest.VolumeId,
opt =>
opt.MapFrom(src => src.VolumeId))
.ForMember(dest => dest.ChapterId,
opt =>
opt.MapFrom(src => src.ChapterId))
.ForMember(dest => dest.Body,
opt =>
opt.MapFrom(src => src.Review))