* Add webhook service to service context * Refactor webhooks to implement IEntity --------- Co-authored-by: Zeegaan <nge@umbraco.dk>
18 lines
448 B
C#
18 lines
448 B
C#
using Umbraco.Cms.Core.Events;
|
|
using Umbraco.Cms.Core.Models;
|
|
|
|
namespace Umbraco.Cms.Core.Notifications;
|
|
|
|
public class WebhookDeletingNotification : DeletingNotification<IWebhook>
|
|
{
|
|
public WebhookDeletingNotification(IWebhook target, EventMessages messages)
|
|
: base(target, messages)
|
|
{
|
|
}
|
|
|
|
public WebhookDeletingNotification(IEnumerable<IWebhook> target, EventMessages messages)
|
|
: base(target, messages)
|
|
{
|
|
}
|
|
}
|