1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

New: Option to opt out of TBA episode title import delays

Closes #3086
This commit is contained in:
Mark McDowall
2019-05-01 20:36:09 -07:00
parent e70d92f670
commit 9b617af713
8 changed files with 150 additions and 2 deletions
@@ -1,5 +1,6 @@
using NzbDrone.Core.Configuration;
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.MediaFiles.EpisodeImport;
using Sonarr.Http.REST;
namespace Sonarr.Api.V3.Config
@@ -20,6 +21,7 @@ namespace Sonarr.Api.V3.Config
public string ChownUser { get; set; }
public string ChownGroup { get; set; }
public EpisodeTitleRequiredType EpisodeTitleRequired { get; set; }
public bool SkipFreeSpaceCheckWhenImporting { get; set; }
public bool CopyUsingHardlinks { get; set; }
public bool ImportExtraFiles { get; set; }
@@ -47,6 +49,7 @@ namespace Sonarr.Api.V3.Config
ChownUser = model.ChownUser,
ChownGroup = model.ChownGroup,
EpisodeTitleRequired = model.EpisodeTitleRequired,
SkipFreeSpaceCheckWhenImporting = model.SkipFreeSpaceCheckWhenImporting,
CopyUsingHardlinks = model.CopyUsingHardlinks,
ImportExtraFiles = model.ImportExtraFiles,