1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Additional Fields in Webhooks

This commit is contained in:
Qstick
2022-11-23 18:42:04 -06:00
parent 4f5ad899bb
commit bae374c0c8
4 changed files with 17 additions and 4 deletions
@@ -21,6 +21,7 @@ namespace NzbDrone.Core.Notifications.Webhook
Size = remoteMovie.Release.Size;
CustomFormats = remoteMovie.CustomFormats?.Select(x => x.Name).ToList();
CustomFormatScore = remoteMovie.CustomFormatScore;
IndexerFlags = remoteMovie.Release.IndexerFlags;
}
public string Quality { get; set; }
@@ -31,5 +32,6 @@ namespace NzbDrone.Core.Notifications.Webhook
public long Size { get; set; }
public int CustomFormatScore { get; set; }
public List<string> CustomFormats { get; set; }
public IndexerFlags IndexerFlags { get; set; }
}
}