Remove old lidarr UI settings

Fixes #401
This commit is contained in:
ta264
2020-08-29 16:08:30 +01:00
parent e4ad1c5e16
commit 4adffff5ba
4 changed files with 0 additions and 99 deletions

View File

@@ -353,41 +353,6 @@ namespace NzbDrone.Core.Configuration
set { SetValue("EnableColorImpairedMode", value); }
}
public bool ExpandAlbumByDefault
{
get { return GetValueBoolean("ExpandAlbumByDefault", false); }
set { SetValue("ExpandAlbumByDefault", value); }
}
public bool ExpandEPByDefault
{
get { return GetValueBoolean("ExpandEPByDefault", false); }
set { SetValue("ExpandEPByDefault", value); }
}
public bool ExpandSingleByDefault
{
get { return GetValueBoolean("ExpandSingleByDefault", false); }
set { SetValue("ExpandSingleByDefault", value); }
}
public bool ExpandBroadcastByDefault
{
get { return GetValueBoolean("ExpandBroadcastByDefault", false); }
set { SetValue("ExpandBroadcastByDefault", value); }
}
public bool ExpandOtherByDefault
{
get { return GetValueBoolean("ExpandOtherByDefault", false); }
set { SetValue("ExpandOtherByDefault", value); }
}
public bool CleanupMetadataImages
{
get { return GetValueBoolean("CleanupMetadataImages", true); }

View File

@@ -63,12 +63,6 @@ namespace NzbDrone.Core.Configuration
bool ShowRelativeDates { get; set; }
bool EnableColorImpairedMode { get; set; }
bool ExpandAlbumByDefault { get; set; }
bool ExpandSingleByDefault { get; set; }
bool ExpandEPByDefault { get; set; }
bool ExpandBroadcastByDefault { get; set; }
bool ExpandOtherByDefault { get; set; }
//Internal
bool CleanupMetadataImages { get; set; }

View File

@@ -16,12 +16,6 @@ namespace Readarr.Api.V1.Config
public bool ShowRelativeDates { get; set; }
public bool EnableColorImpairedMode { get; set; }
public bool ExpandAlbumByDefault { get; set; }
public bool ExpandSingleByDefault { get; set; }
public bool ExpandEPByDefault { get; set; }
public bool ExpandBroadcastByDefault { get; set; }
public bool ExpandOtherByDefault { get; set; }
}
public static class UiConfigResourceMapper
@@ -39,12 +33,6 @@ namespace Readarr.Api.V1.Config
ShowRelativeDates = model.ShowRelativeDates,
EnableColorImpairedMode = model.EnableColorImpairedMode,
ExpandAlbumByDefault = model.ExpandAlbumByDefault,
ExpandSingleByDefault = model.ExpandSingleByDefault,
ExpandEPByDefault = model.ExpandEPByDefault,
ExpandBroadcastByDefault = model.ExpandBroadcastByDefault,
ExpandOtherByDefault = model.ExpandOtherByDefault
};
}
}