Send notifications when an item is copied

This commit is contained in:
Kenn Jacobsen
2019-04-20 20:31:36 +02:00
parent 2a930e5a66
commit 38bb98b099

View File

@@ -73,6 +73,10 @@ namespace Umbraco.Web.Strategies
applicationContext.Services.NotificationService.SendNotification(
content, ActionUnPublish.Instance, applicationContext));
//Send notifications for the copy action
ContentService.Copied += (sender, args) => applicationContext.Services.NotificationService.SendNotification(
args.Original, ActionCopy.Instance, applicationContext
);
}
}