28 lines
988 B
C#
28 lines
988 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Umbraco.Web.Common.Attributes;
|
|
using Umbraco.Web.Common.Authorization;
|
|
using Umbraco.Web.Features;
|
|
|
|
namespace Umbraco.Web.Common.Controllers
|
|
{
|
|
/// <summary>
|
|
/// Provides a base class for Umbraco API controllers.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>These controllers are NOT auto-routed.</para>
|
|
/// <para>The base class is <see cref="ControllerBase"/> which are netcore API controllers without any view support</para>
|
|
/// </remarks>
|
|
[Authorize(Policy = AuthorizationPolicies.UmbracoFeatureEnabled)] // TODO: This could be part of our conventions
|
|
[UmbracoApiController]
|
|
public abstract class UmbracoApiControllerBase : ControllerBase, IUmbracoFeature
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="UmbracoApiControllerBase"/> class.
|
|
/// </summary>
|
|
protected UmbracoApiControllerBase()
|
|
{
|
|
}
|
|
}
|
|
}
|