Removed validation from OmgwtfnzbSettings

This commit is contained in:
Mark McDowall 2013-08-23 21:40:02 -07:00
parent d7b0183457
commit ae590828da
2 changed files with 10 additions and 9 deletions

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace NzbDrone.Core.Indexers.Omgwtfnzbs namespace NzbDrone.Core.Indexers.Omgwtfnzbs
{ {
public class Omgwtfnzbs : IndexerWithSetting<OmgwtfnzbsSetting> public class Omgwtfnzbs : IndexerWithSetting<OmgwtfnzbsSettings>
{ {
public override string Name public override string Name
{ {

View File

@ -1,17 +1,18 @@
using System; using System;
using FluentValidation; using FluentValidation;
using FluentValidation.Results; using FluentValidation.Results;
using Newtonsoft.Json;
using NzbDrone.Core.Annotations; using NzbDrone.Core.Annotations;
namespace NzbDrone.Core.Indexers.Omgwtfnzbs namespace NzbDrone.Core.Indexers.Omgwtfnzbs
{ {
public class OmgwtfnzbsSetting : AbstractValidator<OmgwtfnzbsSetting>, IIndexerSetting public class OmgwtfnzbsSettings : IIndexerSetting
{ {
public OmgwtfnzbsSetting() // public OmgwtfnzbsSettings()
{ // {
RuleFor(c => c.Username).NotEmpty(); // RuleFor(c => c.Username).NotEmpty();
RuleFor(c => c.ApiKey).NotEmpty(); // RuleFor(c => c.ApiKey).NotEmpty();
} // }
[FieldDefinition(0, Label = "Username")] [FieldDefinition(0, Label = "Username")]
public String Username { get; set; } public String Username { get; set; }
@ -19,10 +20,10 @@ namespace NzbDrone.Core.Indexers.Omgwtfnzbs
[FieldDefinition(1, Label = "API Key")] [FieldDefinition(1, Label = "API Key")]
public String ApiKey { get; set; } public String ApiKey { get; set; }
public ValidationResult Validate() public ValidationResult Validate()
{ {
return Validate(this); return new ValidationResult();
//return Validate(this);
} }
} }
} }