mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 13:54:29 +00:00
Implemented OnMovieAdded for Discord
This commit is contained in:
parent
030744ab7b
commit
1e3a42bf42
1 changed files with 15 additions and 0 deletions
|
@ -222,6 +222,21 @@ public override void OnDownload(DownloadMessage message)
|
|||
_proxy.SendPayload(payload, Settings);
|
||||
}
|
||||
|
||||
public override void OnMovieAdded(Movie movie)
|
||||
{
|
||||
var attachments = new List<Embed>
|
||||
{
|
||||
new Embed
|
||||
{
|
||||
Title = movie.MovieMetadata.Value.Title,
|
||||
Description = $"{movie.Title} added to library",
|
||||
}
|
||||
};
|
||||
|
||||
var payload = CreatePayload("Added", attachments);
|
||||
_proxy.SendPayload(payload, Settings);
|
||||
}
|
||||
|
||||
public override void OnMovieRename(Movie movie, List<RenamedMovieFile> renamedFiles)
|
||||
{
|
||||
var attachments = new List<Embed>();
|
||||
|
|
Loading…
Reference in a new issue