mirror of https://github.com/Radarr/Radarr
19 lines
471 B
C#
19 lines
471 B
C#
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();
|
|
}
|
|
}
|
|
} |