Fixes Search an element from its GUID with the backoffice #6185 (#6530)

This commit is contained in:
Shannon Deminick
2019-10-15 00:07:44 +11:00
committed by Sebastiaan Janssen
parent fa7a46389c
commit 63ae00b0f3
8 changed files with 122 additions and 31 deletions

View File

@@ -18,11 +18,23 @@ using System.Web.Http.ModelBinding;
using Umbraco.Web.Actions;
using Umbraco.Web.Composing;
using Umbraco.Core.Security;
using Umbraco.Core.Cache;
using Umbraco.Core.Configuration;
using Umbraco.Core.Persistence;
namespace Umbraco.Web.Trees
{
public abstract class ContentTreeControllerBase : TreeController
{
protected ContentTreeControllerBase(IGlobalSettings globalSettings, IUmbracoContextAccessor umbracoContextAccessor, ISqlContext sqlContext, ServiceContext services, AppCaches appCaches, IProfilingLogger logger, IRuntimeState runtimeState, UmbracoHelper umbracoHelper) : base(globalSettings, umbracoContextAccessor, sqlContext, services, appCaches, logger, runtimeState, umbracoHelper)
{
}
protected ContentTreeControllerBase()
{
}
#region Actions
/// <summary>
@@ -529,6 +541,8 @@ namespace Umbraco.Web.Trees
private bool? _ignoreUserStartNodes;
/// <summary>
/// If the request should allows a user to choose nodes that they normally don't have access to
/// </summary>