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