Removed NzbMatrix

New: Removed NzbMatrix
This commit is contained in:
Mark McDowall 2012-12-09 20:50:05 -08:00
parent a2c96cb110
commit aa40fe8c94
17 changed files with 22 additions and 983 deletions

View file

@ -9,20 +9,6 @@ namespace NzbDrone.Web.Models
{
public class IndexerSettingsModel
{
[DataType(DataType.Text)]
[DisplayName("Username")]
[Description("Username for NZB Matrix")]
[DisplayFormat(ConvertEmptyStringToNull = false)]
[RequiredIf("NzbMatrixEnabled", true, ErrorMessage = "Username Required when NZBMatrix is enabled")]
public String NzbMatrixUsername { get; set; }
[DataType(DataType.Text)]
[DisplayName("API Key")]
[Description("API Key for NZB Matrix")]
[DisplayFormat(ConvertEmptyStringToNull = false)]
[RequiredIf("NzbMatrixEnabled", true, ErrorMessage = "API Key Required when NZBMatrix is enabled")]
public String NzbMatrixApiKey { get; set; }
[DataType(DataType.Text)]
[DisplayName("User ID")]
[Description("User ID for NZBsRus")]
@ -51,10 +37,6 @@ namespace NzbDrone.Web.Models
[RequiredIf("FileSharingTalkEnabled", true, ErrorMessage = "Password Secret Required when File Sharing Talk is enabled")]
public String FileSharingTalkSecret { get; set; }
[DisplayName("NZB Matrix")]
[Description("Enable downloading episodes from NZB Matrix")]
public bool NzbMatrixEnabled { get; set; }
[DisplayName("NZBsRUs")]
[Description("Enable downloading episodes from NZBsRus")]
public bool NzbsRUsEnabled { get; set; }