Send notifications for rollbacks

This commit is contained in:
Kenn Jacobsen
2019-04-20 12:24:53 +02:00
committed by Sebastiaan Janssen
parent a969ff6e10
commit 153ac58d2a

View File

@@ -46,6 +46,9 @@ namespace Umbraco.Web.Compose
//Send notifications for the unpublish action
ContentService.Unpublished += (sender, args) => _notifier.Notify(_actions.GetAction<ActionUnpublish>(), args.PublishedEntities.ToArray());
//Send notifications for the rollback action
ContentService.RolledBack += (sender, args) => _notifier.Notify(_actions.GetAction<ActionRollback>(), args.Entity);
}
public void Terminate()