mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 01:38:24 +00:00
Validator will allow empty Path when RootFolderPath has a value
This commit is contained in:
parent
dfe8d5436a
commit
e8d8588199
1 changed files with 4 additions and 2 deletions
|
@ -29,11 +29,13 @@ public SeriesModule(ISeriesService seriesService, ISeriesStatisticsService serie
|
||||||
|
|
||||||
Get["/{slug}"] = o => GetSeries((string)o.slug.ToString());
|
Get["/{slug}"] = o => GetSeries((string)o.slug.ToString());
|
||||||
|
|
||||||
SharedValidator.RuleFor(s => s.Path).NotEmpty();
|
|
||||||
SharedValidator.RuleFor(s => s.QualityProfileId).ValidId();
|
SharedValidator.RuleFor(s => s.QualityProfileId).ValidId();
|
||||||
|
|
||||||
PostValidator.RuleFor(s => s.Title).NotEmpty();
|
PutValidator.RuleFor(s => s.Path).NotEmpty().When(s => String.IsNullOrEmpty(s.RootFolderPath));
|
||||||
|
PutValidator.RuleFor(s => s.RootFolderPath).NotEmpty().When(s => String.IsNullOrEmpty(s.Path));
|
||||||
|
|
||||||
|
PostValidator.RuleFor(s => s.Title).NotEmpty();
|
||||||
|
PostValidator.RuleFor(s => s.Path).NotEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
private Response GetSeries(string slug)
|
private Response GetSeries(string slug)
|
||||||
|
|
Loading…
Reference in a new issue