1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-25 01:11:43 +00:00

Fixes Release restriction validation

Closes #691
This commit is contained in:
Mark McDowall 2015-07-16 23:08:32 -07:00
parent ea19020015
commit c4fe645c31

View file

@ -1,6 +1,8 @@
using System;
using System.Collections.Generic;
using FluentValidation.Results;
using NzbDrone.Api.Mapping;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.Restrictions;
namespace NzbDrone.Api.Restrictions
@ -19,6 +21,16 @@ public RestrictionModule(IRestrictionService restrictionService)
CreateResource = Create;
UpdateResource = Update;
DeleteResource = Delete;
SharedValidator.Custom(restriction =>
{
if (restriction.Ignored.IsNullOrWhiteSpace() && restriction.Required.IsNullOrWhiteSpace())
{
return new ValidationFailure("", "Either 'Must contaion' or 'Must not contain' is required");
}
return null;
});
}
private RestrictionResource Get(Int32 id)