Files
Umbraco-CMS/src/Umbraco.Web/Mvc/UmbracoAuthorizedController.cs

30 lines
1.1 KiB
C#

using Umbraco.Core.Cache;
using Umbraco.Core.Configuration;
using Umbraco.Core.Logging;
using Umbraco.Core.Persistence;
using Umbraco.Core.Services;
namespace Umbraco.Web.Mvc
{
/// <summary>
/// Provides a base class for authorized Umbraco controllers.
/// </summary>
/// <remarks>
/// This controller essentially just uses a global UmbracoAuthorizeAttribute, inheritors that require more granular control over the
/// authorization of each method can use this attribute instead of inheriting from this controller.
/// </remarks>
[UmbracoAuthorize]
[DisableBrowserCache]
public abstract class UmbracoAuthorizedController : UmbracoController
{
protected UmbracoAuthorizedController()
{
}
protected UmbracoAuthorizedController(IGlobalSettings globalSettings, IUmbracoContextAccessor umbracoContextAccessor, ServiceContext services, AppCaches appCaches, IProfilingLogger profilingLogger, UmbracoHelper umbracoHelper)
: base(globalSettings, umbracoContextAccessor, services, appCaches, profilingLogger, umbracoHelper)
{
}
}
}