V7: Send notifications when an item is copied (#5302)

V7: Send notifications when an item is copied
This commit is contained in:
Sebastiaan Janssen
2019-04-22 13:15:44 +02:00
committed by GitHub

View File

@@ -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);
}
}