1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

New: Send additional information with Webhook and Custom Scripts

Closes #5059
This commit is contained in:
Devin Buhl
2022-11-06 11:21:28 -05:00
committed by GitHub
parent 209a250079
commit e5d6e569cf
5 changed files with 66 additions and 2 deletions
@@ -6,6 +6,7 @@ namespace NzbDrone.Core.Notifications.Webhook
{
public int Id { get; set; }
public string Title { get; set; }
public string TitleSlug { get; set; }
public string Path { get; set; }
public int TvdbId { get; set; }
public int TvMazeId { get; set; }
@@ -20,6 +21,7 @@ namespace NzbDrone.Core.Notifications.Webhook
{
Id = series.Id;
Title = series.Title;
TitleSlug = series.TitleSlug;
Path = series.Path;
TvdbId = series.TvdbId;
TvMazeId = series.TvMazeId;