New: Per download client setting to Remove Completed/Failed downloads instead of global setting

(cherry picked from commit 2dba5ef4b431bee0a061be67354c9a7a612a03c8)
This commit is contained in:
Taloth Saldono
2021-05-15 21:37:55 +02:00
committed by Bogdan
parent e5a1b7a72e
commit 8bb52105fd
16 changed files with 308 additions and 92 deletions
@@ -137,13 +137,6 @@ namespace NzbDrone.Core.Configuration
set { SetValue("EnableCompletedDownloadHandling", value); }
}
public bool RemoveCompletedDownloads
{
get { return GetValueBoolean("RemoveCompletedDownloads", false); }
set { SetValue("RemoveCompletedDownloads", value); }
}
public bool AutoRedownloadFailed
{
get { return GetValueBoolean("AutoRedownloadFailed", true); }
@@ -151,13 +144,6 @@ namespace NzbDrone.Core.Configuration
set { SetValue("AutoRedownloadFailed", value); }
}
public bool RemoveFailedDownloads
{
get { return GetValueBoolean("RemoveFailedDownloads", true); }
set { SetValue("RemoveFailedDownloads", value); }
}
public bool CreateEmptyAuthorFolders
{
get { return GetValueBoolean("CreateEmptyAuthorFolders", false); }