DataType refactoring preparation - Entity refactoring

This commit is contained in:
Stephan
2018-01-10 12:48:51 +01:00
parent 2cb6378c26
commit b5856803e1
236 changed files with 1872 additions and 1869 deletions

View File

@@ -21,7 +21,7 @@ namespace Umbraco.Web.Models.Mapping
.ForMember(dest => dest.Snippet, opt => opt.Ignore());
CreateMap<CodeFileDisplay, IPartialView>()
.IgnoreDeletableEntityCommonProperties()
.IgnoreEntityCommonProperties()
.ForMember(dest => dest.Id, opt => opt.Ignore())
.ForMember(dest => dest.Key, opt => opt.Ignore())
.ForMember(dest => dest.Path, opt => opt.Ignore())
@@ -32,7 +32,7 @@ namespace Umbraco.Web.Models.Mapping
.ForMember(dest => dest.HasIdentity, opt => opt.Ignore());
CreateMap<CodeFileDisplay, Script>()
.IgnoreDeletableEntityCommonProperties()
.IgnoreEntityCommonProperties()
.ForMember(dest => dest.Id, opt => opt.Ignore())
.ForMember(dest => dest.Key, opt => opt.Ignore())
.ForMember(dest => dest.Path, opt => opt.Ignore())