Updated the Radarr API to support the new V3 endpoints. There's now a new V3 flag on the radarr settings

This commit is contained in:
tidusjar 2020-10-11 00:52:37 +01:00
commit 26b2a574be
24 changed files with 347 additions and 94 deletions

View file

@ -1,10 +1,9 @@
using Ombi.Core.Settings.Models.External;
namespace Ombi.Settings.Settings.Models.External
namespace Ombi.Settings.Settings.Models.External
{
public class RadarrSettings : ExternalSettings
{
public bool Enabled { get; set; }
public bool V3 { get; set; }
public string ApiKey { get; set; }
public string DefaultQualityProfile { get; set; }
public string DefaultRootPath { get; set; }