Skip to content

Commit

Permalink
- Codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
azturner committed Feb 13, 2017
1 parent d8c94e5 commit 436d229
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Rock.Client/CodeGenerated/EntityType.cs
Expand Up @@ -46,6 +46,9 @@ public partial class EntityTypeEntity
/// <summary />
public string FriendlyName { get; set; }

/// <summary />
public string IndexDocumentUrl { get; set; }

/// <summary />
public string IndexResultTemplate { get; set; }

Expand Down Expand Up @@ -87,6 +90,7 @@ public void CopyPropertiesFrom( EntityType source )
this.ForeignGuid = source.ForeignGuid;
this.ForeignKey = source.ForeignKey;
this.FriendlyName = source.FriendlyName;
this.IndexDocumentUrl = source.IndexDocumentUrl;
this.IndexResultTemplate = source.IndexResultTemplate;
this.IsCommon = source.IsCommon;
this.IsEntity = source.IsEntity;
Expand Down
9 changes: 9 additions & 0 deletions Rock.Client/CodeGenerated/FinancialPaymentDetail.cs
Expand Up @@ -133,6 +133,15 @@ public partial class FinancialPaymentDetail : FinancialPaymentDetailEntity
/// <summary />
public DefinedValue CurrencyTypeValue { get; set; }

/// <summary />
public int? ExpirationMonth { get; set; }

/// <summary />
public int? ExpirationYear { get; set; }

/// <summary />
public string NameOnCard { get; set; }

/// <summary>
/// NOTE: Attributes are only populated when ?loadAttributes is specified. Options for loadAttributes are true, false, 'simple', 'expanded'
/// </summary>
Expand Down
4 changes: 0 additions & 4 deletions Rock.Client/CodeGenerated/Site.cs
Expand Up @@ -122,9 +122,6 @@ public bool EnablePageViews
/// <summary />
public int? PageNotFoundPageRouteId { get; set; }

/// <summary />
public int? PageViewRetentionPeriodDays { get; set; }

/// <summary />
public bool RedirectTablets { get; set; }

Expand Down Expand Up @@ -200,7 +197,6 @@ public void CopyPropertiesFrom( Site source )
this.PageHeaderContent = source.PageHeaderContent;
this.PageNotFoundPageId = source.PageNotFoundPageId;
this.PageNotFoundPageRouteId = source.PageNotFoundPageRouteId;
this.PageViewRetentionPeriodDays = source.PageViewRetentionPeriodDays;
this.RedirectTablets = source.RedirectTablets;
this.RegistrationPageId = source.RegistrationPageId;
this.RegistrationPageRouteId = source.RegistrationPageRouteId;
Expand Down
2 changes: 2 additions & 0 deletions Rock.Client/CodeGenerated/SystemGuid/RockSystemGuids.cs
Expand Up @@ -70,7 +70,9 @@ public class BinaryFiletype
/// </summary>
public class BlockType
{
public const string CONTENT_CHANNEL_VIEW = "143A2345-3E26-4ED0-A2FE-42AAF11B4C0F";
public const string HTML_CONTENT = "19B61D65-37E3-459F-A44F-DEF0089118A3";
public const string PAGE_MENU = "CACB9D1A-A820-4587-986A-D66A69EE9948";
public const string PLUGIN_MANAGER = "F80268E6-2625-4565-AA2E-790C5E40A119";
}

Expand Down
1 change: 1 addition & 0 deletions Rock/Model/CodeGenerated/EntityTypeService.cs
Expand Up @@ -272,6 +272,7 @@ public static void CopyPropertiesFrom( this EntityType target, EntityType source
target.ForeignGuid = source.ForeignGuid;
target.ForeignKey = source.ForeignKey;
target.FriendlyName = source.FriendlyName;
target.IndexDocumentUrl = source.IndexDocumentUrl;
target.IndexResultTemplate = source.IndexResultTemplate;
target.IsCommon = source.IsCommon;
target.IsEntity = source.IsEntity;
Expand Down

0 comments on commit 436d229

Please sign in to comment.