mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
removed backlog from server
This commit is contained in:
@@ -102,13 +102,6 @@ namespace NzbDrone.Core.Configuration
|
||||
set { SetValue("SabTvCategory", value); }
|
||||
}
|
||||
|
||||
public SabPriorityType SabBacklogTvPriority
|
||||
{
|
||||
get { return GetValueEnum("SabBacklogTvPriority", SabPriorityType.Default); }
|
||||
|
||||
set { SetValue("SabBacklogTvPriority", value); }
|
||||
}
|
||||
|
||||
public SabPriorityType SabRecentTvPriority
|
||||
{
|
||||
get { return GetValueEnum("SabRecentTvPriority", SabPriorityType.Default); }
|
||||
@@ -142,12 +135,6 @@ namespace NzbDrone.Core.Configuration
|
||||
set { SetValue("UpdateUrl", value); }
|
||||
}
|
||||
|
||||
public bool EnableBacklogSearching
|
||||
{
|
||||
get { return GetValueBoolean("EnableBacklogSearching"); }
|
||||
set { SetValue("EnableBacklogSearching", value); }
|
||||
}
|
||||
|
||||
public bool AutoIgnorePreviouslyDownloadedEpisodes
|
||||
{
|
||||
get { return GetValueBoolean("AutoIgnorePreviouslyDownloadedEpisodes"); }
|
||||
@@ -257,13 +244,6 @@ namespace NzbDrone.Core.Configuration
|
||||
set { SetValue("NzbgetPriority", value); }
|
||||
}
|
||||
|
||||
public PriorityType NzbgetBacklogTvPriority
|
||||
{
|
||||
get { return GetValueEnum("NzbgetBacklogTvPriority", PriorityType.Normal); }
|
||||
|
||||
set { SetValue("NzbgetBacklogTvPriority", value); }
|
||||
}
|
||||
|
||||
public PriorityType NzbgetRecentTvPriority
|
||||
{
|
||||
get { return GetValueEnum("NzbgetRecentTvPriority", PriorityType.Normal); }
|
||||
|
||||
@@ -17,7 +17,6 @@ namespace NzbDrone.Core.Configuration
|
||||
String SabUsername { get; set; }
|
||||
String SabPassword { get; set; }
|
||||
String SabTvCategory { get; set; }
|
||||
SabPriorityType SabBacklogTvPriority { get; set; }
|
||||
SabPriorityType SabRecentTvPriority { get; set; }
|
||||
String DownloadedEpisodesFolder { get; set; }
|
||||
bool UseSeasonFolder { get; set; }
|
||||
@@ -40,11 +39,10 @@ namespace NzbDrone.Core.Configuration
|
||||
Int32 NzbgetPort { get; set; }
|
||||
String NzbgetTvCategory { get; set; }
|
||||
Int32 NzbgetPriority { get; set; }
|
||||
PriorityType NzbgetBacklogTvPriority { get; set; }
|
||||
PriorityType NzbgetRecentTvPriority { get; set; }
|
||||
string NzbRestrictions { get; set; }
|
||||
string GetValue(string key, object defaultValue, bool persist = false);
|
||||
void SetValue(string key, string value);
|
||||
void SaveValues(Dictionary<string, object> configValues);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user