Files
Umbraco-CMS/src/Umbraco.Web.Common/Attributes/UmbracoApiControllerAttribute.cs
Bjarke Berg 87c7347900 V14: Reintroduce umbraco api controller as obsolete (#16263)
* Revert "v14: Remove mentions of UmbracoApiController (#15863)"

This reverts commit 30e2dea57a.

* Obsolete UmbracoApiController

* Added a few more obsoletion messages

* Removed some of the reintroduced stuff again

* Add obsoletion to FrontEndRoutes controller

---------

Co-authored-by: kjac <kja@umbraco.dk>
2024-05-13 08:28:42 +02:00

11 lines
265 B
C#

using Umbraco.Cms.Web.Common.ApplicationModels;
namespace Umbraco.Cms.Web.Common.Attributes;
[AttributeUsage(AttributeTargets.Class)]
[Obsolete("No-op attribute. Will be removed in Umbraco 15.")]
public sealed class UmbracoApiControllerAttribute : Attribute
{
}