2021-02-18 11:06:02 +01:00
|
|
|
|
using Umbraco.Cms.Web.BackOffice.Filters;
|
2020-05-22 07:26:46 +02:00
|
|
|
|
|
2021-02-18 11:06:02 +01:00
|
|
|
|
namespace Umbraco.Cms.Web.BackOffice.Controllers
|
2020-05-22 07:26:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// An abstract controller that automatically checks if any request is a non-GET and if the
|
|
|
|
|
|
/// resulting message is INotificationModel in which case it will append any Event Messages
|
|
|
|
|
|
/// currently in the request.
|
|
|
|
|
|
/// </summary>
|
2020-06-18 14:40:30 +02:00
|
|
|
|
[PrefixlessBodyModelValidator]
|
2020-08-04 12:27:21 +10:00
|
|
|
|
[AppendCurrentEventMessages]
|
2020-05-22 07:26:46 +02:00
|
|
|
|
public abstract class BackOfficeNotificationsController : UmbracoAuthorizedJsonController
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|