* 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>
11 lines
265 B
C#
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
|
|
{
|
|
}
|