Display chapter reviews in volume page
This commit is contained in:
parent
85b6f107bc
commit
e0b27f464f
10 changed files with 124 additions and 36 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue