* Align namespaces in integration tests * Align namespaces in unit tests * Align namespaces in Backoffice.Filters * Align namespaces in Backoffice.ActionResults * Align namespaces in Backoffice.Mapping * Align namespaces in Backoffice.PorpertyEditors and SignalR * Align namespaces in Backoffice.Trees * Align unit tests after migration
16 lines
528 B
C#
16 lines
528 B
C#
using Umbraco.Web.BackOffice.Filters;
|
|
|
|
namespace Umbraco.Web.BackOffice.Controllers
|
|
{
|
|
/// <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>
|
|
[PrefixlessBodyModelValidator]
|
|
[AppendCurrentEventMessages]
|
|
public abstract class BackOfficeNotificationsController : UmbracoAuthorizedJsonController
|
|
{
|
|
}
|
|
}
|