Align namespaces in Umbraco.Web.Common

This commit is contained in:
Mole
2021-02-10 11:42:04 +01:00
parent 428e80f515
commit 55aa2edb72
303 changed files with 464 additions and 649 deletions

View File

@@ -1,10 +1,10 @@
using Microsoft.AspNetCore.Mvc.ApplicationModels;
using Microsoft.AspNetCore.Mvc.ModelBinding;
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using Umbraco.Web.Common.Attributes;
using Microsoft.AspNetCore.Mvc.ApplicationModels;
using Microsoft.AspNetCore.Mvc.ModelBinding;
using Umbraco.Cms.Web.Common.Attributes;
namespace Umbraco.Web.Common.ApplicationModels
namespace Umbraco.Cms.Web.Common.ApplicationModels
{
// TODO: This should just exist in the back office project
@@ -52,6 +52,6 @@ namespace Umbraco.Web.Common.ApplicationModels
private bool IsBackOfficeController(ControllerModel controller)
=> controller.Attributes.OfType<IsBackOfficeAttribute>().Any();
}
}