Moved template and docType from properties tab to root node and linked the values back together in front-end

This commit is contained in:
Robert
2017-09-26 15:44:41 +02:00
parent dec44b1288
commit e740838ef7
3 changed files with 50 additions and 78 deletions

View File

@@ -29,8 +29,11 @@ namespace Umbraco.Web.Models.ContentEditing
[DataMember(Name = "template")]
public string TemplateAlias { get; set; }
[DataMember(Name = "allowedTemplates")]
public object TemplateConfig { get; set; }
[DataMember(Name = "allowedTemplates")]
public object AllowedTemplates { get; set; }
[DataMember(Name = "docTypeValue")]
public object DocTypeValue { get; set; }
[DataMember(Name = "urls")]
public string[] Urls { get; set; }