mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
fixed validation spelling
This commit is contained in:
parent
66ce8e8b27
commit
e4c8255d69
@ -28,7 +28,7 @@ public IndexerModule(IIndexerService indexerService)
|
|||||||
SharedValidator.RuleFor(c => c.Name).NotEmpty();
|
SharedValidator.RuleFor(c => c.Name).NotEmpty();
|
||||||
SharedValidator.RuleFor(c => c.Implementation).NotEmpty();
|
SharedValidator.RuleFor(c => c.Implementation).NotEmpty();
|
||||||
|
|
||||||
SharedValidator.RuleForField<string>(c => c.Fields, "Url").NotEmpty();
|
SharedValidator.RuleForField<string>(c=>c.Fields,"Url").NotEmpty();
|
||||||
|
|
||||||
PostValidator.RuleFor(c => c.Fields).NotEmpty();
|
PostValidator.RuleFor(c => c.Fields).NotEmpty();
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
using System.Linq.Expressions;
|
using System.Linq.Expressions;
|
||||||
using FluentValidation;
|
using FluentValidation;
|
||||||
using FluentValidation.Internal;
|
using FluentValidation.Internal;
|
||||||
|
using FluentValidation.Resources;
|
||||||
using NzbDrone.Api.ClientSchema;
|
using NzbDrone.Api.ClientSchema;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
@ -10,10 +11,11 @@ namespace NzbDrone.Api.REST
|
|||||||
{
|
{
|
||||||
public class ResourceValidator<TResource> : AbstractValidator<TResource>
|
public class ResourceValidator<TResource> : AbstractValidator<TResource>
|
||||||
{
|
{
|
||||||
public IRuleBuilderInitial<TResource, TProperty> RuleForField<TProperty>(Expression<Func<TResource, IEnumerable<Field>>> fieldListAccessor, string filedName)
|
public IRuleBuilderInitial<TResource, TProperty> RuleForField<TProperty>(Expression<Func<TResource, IEnumerable<Field>>> fieldListAccessor, string fieldName)
|
||||||
{
|
{
|
||||||
var rule = new PropertyRule(fieldListAccessor.GetMember(), c => GetValue(c, fieldListAccessor.Compile(), filedName), null, () => { return CascadeMode.Continue; }, typeof(TProperty), typeof(TResource));
|
var rule = new PropertyRule(fieldListAccessor.GetMember(), c => GetValue(c, fieldListAccessor.Compile(), fieldName), null, () => CascadeMode.Continue, typeof(TProperty), typeof(TResource));
|
||||||
rule.PropertyName += "." + filedName;
|
rule.PropertyName += "." + fieldName;
|
||||||
|
rule.DisplayName = new StaticStringSource(fieldName);
|
||||||
|
|
||||||
AddRule(rule);
|
AddRule(rule);
|
||||||
return new RuleBuilder<TResource, TProperty>(rule);
|
return new RuleBuilder<TResource, TProperty>(rule);
|
||||||
|
Loading…
Reference in New Issue
Block a user