New: Author Added notification

(cherry picked from commit https://github.com/Radarr/Radarr/commit/f890aadffa5ae579bcf65abdcf3e3948837084a9)
This commit is contained in:
MxMarx
2023-09-25 17:33:21 -07:00
committed by Bogdan
parent f9a6db40b8
commit 9918535509
37 changed files with 278 additions and 1 deletions
@@ -35,6 +35,11 @@ namespace NzbDrone.Core.Notifications.Webhook
_proxy.SendWebhook(BuildOnRenamePayload(author, renamedFiles), Settings);
}
public override void OnAuthorAdded(Author author)
{
_proxy.SendWebhook(BuildOnAuthorAdded(author), Settings);
}
public override void OnAuthorDelete(AuthorDeleteMessage deleteMessage)
{
_proxy.SendWebhook(BuildOnAuthorDelete(deleteMessage), Settings);