1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00

Add missing On Delete Notifications to Mailgun notifications

This commit is contained in:
Robin Dadswell 2021-04-23 15:54:15 +01:00 committed by GitHub
parent 8175f19442
commit a824fa44d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,20 @@ public override void OnDownload(DownloadMessage downloadMessage)
_proxy.SendNotification(EPISODE_DOWNLOADED_TITLE, downloadMessage.Message, Settings);
}
public override void OnEpisodeFileDelete(EpisodeDeleteMessage deleteMessage)
{
var body = $"{deleteMessage.Message} deleted.";
_proxy.SendNotification(EPISODE_DELETED_TITLE, body, Settings);
}
public override void OnSeriesDelete(SeriesDeleteMessage deleteMessage)
{
var body = $"{deleteMessage.Message}";
_proxy.SendNotification(SERIES_DELETED_TITLE, body, Settings);
}
public override void OnHealthIssue(HealthCheck.HealthCheck healthCheckMessage)
{
_proxy.SendNotification(HEALTH_ISSUE_TITLE, healthCheckMessage.Message, Settings);