using Umbraco.Cms.Web.BackOffice.Filters; namespace Umbraco.Cms.Web.BackOffice.Controllers { /// /// 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. /// [PrefixlessBodyModelValidator] [AppendCurrentEventMessages] public abstract class BackOfficeNotificationsController : UmbracoAuthorizedJsonController { } }