Newznab providers can be configured by the end user.

This commit is contained in:
Mark McDowall 2011-11-13 12:51:15 -08:00
parent f3f2691b4d
commit 6c86f1dfdd
13 changed files with 503 additions and 18 deletions

View file

@ -71,5 +71,11 @@ namespace NzbDrone.Web.Models
[DisplayName("Newzbin")]
[Description("Enable downloading episodes from Newzbin")]
public bool NewzbinEnabled { get; set; }
[DisplayName("Newznab")]
[Description("Enable downloading episodes from Newznab Providers")]
public bool NewznabEnabled { get; set; }
public List<NewznabDefinition> NewznabDefinitions { get; set; }
}
}