Umbraco update

Error email updates
Piscal communication error handling
Empty page for terms of service
This commit is contained in:
2017-01-04 08:49:36 -05:00
parent 8f5399e746
commit 9e710effc1
15 changed files with 228 additions and 25 deletions
+47 -3
View File
@@ -2,7 +2,7 @@
// <auto-generated>
// This code was generated by a tool.
//
// Umbraco.ModelsBuilder v3.0.4.0
// Umbraco.ModelsBuilder v3.0.5.96
//
// Changes to this file will be lost if the code is regenerated.
// </auto-generated>
@@ -19,8 +19,8 @@ using Umbraco.ModelsBuilder;
using Umbraco.ModelsBuilder.Umbraco;
[assembly: PureLiveAssembly]
[assembly:ModelsBuilderAssembly(PureLive = true, SourceHash = "c915aa356c033a90")]
[assembly:System.Reflection.AssemblyVersion("0.0.0.2")]
[assembly:ModelsBuilderAssembly(PureLive = true, SourceHash = "c5118162be4a0dc0")]
[assembly:System.Reflection.AssemblyVersion("0.0.0.5")]
namespace Umbraco.Web.PublishedContentModels
{
@@ -262,6 +262,50 @@ namespace Umbraco.Web.PublishedContentModels
}
}
/// <summary>Empty Page</summary>
[PublishedContentModel("TextPage1")]
public partial class TextPage1 : PublishedContentModel
{
#pragma warning disable 0109 // new is redundant
public new const string ModelTypeAlias = "TextPage1";
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
#pragma warning restore 0109
public TextPage1(IPublishedContent content)
: base(content)
{ }
#pragma warning disable 0109 // new is redundant
public new static PublishedContentType GetModelContentType()
{
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
}
#pragma warning restore 0109
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<TextPage1, TValue>> selector)
{
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
}
///<summary>
/// Content
///</summary>
[ImplementPropertyType("content")]
public Newtonsoft.Json.Linq.JToken Content
{
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
}
///<summary>
/// Hide in Navigation?
///</summary>
[ImplementPropertyType("umbracoNaviHide")]
public bool UmbracoNaviHide
{
get { return this.GetPropertyValue<bool>("umbracoNaviHide"); }
}
}
/// <summary>Folder</summary>
[PublishedContentModel("Folder")]
public partial class Folder : PublishedContentModel