Merge branch 'temp8' into temp8-3096-angular-bulk-publish

# Conflicts:
#	src/Umbraco.Core/Migrations/Upgrade/UmbracoPlan.cs
This commit is contained in:
Shannon
2018-11-20 19:37:39 +11:00
222 changed files with 2909 additions and 3292 deletions

View File

@@ -14,6 +14,7 @@ using Umbraco.Web.Models.Trees;
using Umbraco.Web.WebApi.Filters;
using System.Globalization;
using Umbraco.Core.Models.Entities;
using Umbraco.Core.Services;
using Umbraco.Web.Actions;
using Umbraco.Web.Composing;
@@ -208,12 +209,19 @@ namespace Umbraco.Web.Trees
}
else
{
result = Services.EntityService.GetChildren(entityId, UmbracoObjectType).ToArray();
result = GetChildrenFromEntityService(entityId).ToArray();
}
return result;
}
/// <summary>
/// Abstract method to fetch the entities from the entity service
/// </summary>
/// <param name="entityId"></param>
/// <returns></returns>
internal abstract IEnumerable<IEntitySlim> GetChildrenFromEntityService(int entityId);
/// <summary>
/// Returns true or false if the current user has access to the node based on the user's allowed start node (path) access
/// </summary>