mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
9e7cb708bf
* Bare bones of notifications working. * Add MovieDownload event handler To allow Download notificaitons * Update pushover text to indicate movie * Initial Notification Support On Download and On Grab notifications should work. * Telegram Notification Text * Update Custom Script For Movies * Update PP script WiKi page Also added wiki page to Radarr wiki.
20 lines
527 B
C#
20 lines
527 B
C#
using NzbDrone.Core.ThingiProvider;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public interface INotification : IProvider
|
|
{
|
|
string Link { get; }
|
|
|
|
void OnGrab(GrabMessage grabMessage);
|
|
void OnDownload(DownloadMessage message);
|
|
void OnRename(Series series);
|
|
void OnMovieRename(Movie movie);
|
|
bool SupportsOnGrab { get; }
|
|
bool SupportsOnDownload { get; }
|
|
bool SupportsOnUpgrade { get; }
|
|
bool SupportsOnRename { get; }
|
|
}
|
|
}
|