You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
471 B
19 lines
471 B
using FluentValidation.Validators;
|
|
using NzbDrone.Common;
|
|
|
|
namespace NzbDrone.Api.Validation
|
|
{
|
|
public class PathValidator : PropertyValidator
|
|
{
|
|
public PathValidator()
|
|
: base("Invalid Path")
|
|
{
|
|
}
|
|
|
|
protected override bool IsValid(PropertyValidatorContext context)
|
|
{
|
|
if (context.PropertyValue == null) return false;
|
|
return context.PropertyValue.ToString().IsPathValid();
|
|
}
|
|
}
|
|
} |