Swagger Fix + Imprints now showing (#3032)
This commit is contained in:
parent
e2fe53187e
commit
ce0c9a3364
6 changed files with 759 additions and 30 deletions
|
@ -117,6 +117,10 @@ public class AutoMapperProfiles : Profile
|
|||
opt =>
|
||||
opt.MapFrom(src =>
|
||||
src.People.Where(p => p.Role == PersonRole.Inker).OrderBy(p => p.NormalizedName)))
|
||||
.ForMember(dest => dest.Imprints,
|
||||
opt =>
|
||||
opt.MapFrom(src =>
|
||||
src.People.Where(p => p.Role == PersonRole.Imprint).OrderBy(p => p.NormalizedName)))
|
||||
.ForMember(dest => dest.Letterers,
|
||||
opt =>
|
||||
opt.MapFrom(src =>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue