diff --git a/src/Umbraco.Web/Strategies/NotificationsHandler.cs b/src/Umbraco.Web/Strategies/NotificationsHandler.cs index b3549e0faa..6751071afd 100644 --- a/src/Umbraco.Web/Strategies/NotificationsHandler.cs +++ b/src/Umbraco.Web/Strategies/NotificationsHandler.cs @@ -96,6 +96,10 @@ namespace Umbraco.Web.Strategies ); } }; + + //Send notifications for the copy action + ContentService.Copied += (sender, args) => applicationContext.Services.NotificationService.SendNotification( + args.Original, ActionCopy.Instance, applicationContext); } }