mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-27 08:44:34 +01:00
35 lines
745 B
C#
35 lines
745 B
C#
using FluentValidation.Validators;
|
|
|
|
namespace Radarr.Http.Validation
|
|
{
|
|
public class RssSyncIntervalValidator : PropertyValidator
|
|
{
|
|
public RssSyncIntervalValidator()
|
|
: base("Must be between 10 and 120 or 0 to disable")
|
|
{
|
|
}
|
|
|
|
protected override bool IsValid(PropertyValidatorContext context)
|
|
{
|
|
if (context.PropertyValue == null)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
var value = (int)context.PropertyValue;
|
|
|
|
if (value == 0)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
if (value >= 10 && value <= 120)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|