mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-18 21:55:12 -04:00
New: Added MinAvailability Option to UI
This commit is contained in:
@@ -41,6 +41,11 @@ namespace Radarr.Api.V2.Movies
|
||||
movie.ProfileId = resource.QualityProfileId.Value;
|
||||
}
|
||||
|
||||
if (resource.MinimumAvailability.HasValue)
|
||||
{
|
||||
movie.MinimumAvailability = resource.MinimumAvailability.Value;
|
||||
}
|
||||
|
||||
if (resource.RootFolderPath.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
movie.RootFolderPath = resource.RootFolderPath;
|
||||
|
||||
@@ -9,6 +9,7 @@ namespace Radarr.Api.V2.Movies
|
||||
public List<int> MovieIds { get; set; }
|
||||
public bool? Monitored { get; set; }
|
||||
public int? QualityProfileId { get; set; }
|
||||
public MovieStatusType? MinimumAvailability { get; set; }
|
||||
public string RootFolderPath { get; set; }
|
||||
public List<int> Tags { get; set; }
|
||||
public ApplyTags ApplyTags { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user