mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04:00
New: Show updated rejection reasons in manual import after selecting series
This commit is contained in:
parent
4f15cd55be
commit
a6b8a34ac9
2 changed files with 4 additions and 0 deletions
|
@ -42,6 +42,7 @@ namespace Sonarr.Api.V3.ManualImport
|
|||
|
||||
item.SeasonNumber = processedItem.SeasonNumber;
|
||||
item.Episodes = processedItem.Episodes.ToResource();
|
||||
item.Rejections = processedItem.Rejections;
|
||||
}
|
||||
|
||||
return items;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using NzbDrone.Core.DecisionEngine;
|
||||
using Sonarr.Api.V3.Episodes;
|
||||
using Sonarr.Http.REST;
|
||||
|
||||
|
@ -11,5 +12,7 @@ namespace Sonarr.Api.V3.ManualImport
|
|||
public int? SeasonNumber { get; set; }
|
||||
public List<EpisodeResource> Episodes { get; set; }
|
||||
public string DownloadId { get; set; }
|
||||
|
||||
public IEnumerable<Rejection> Rejections { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue