mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-19 17:32:38 +01:00
Remove unused ImportExclusions property
This commit is contained in:
parent
1f5a84d202
commit
f76c97c3ce
@ -62,7 +62,6 @@ public interface IConfigService
|
|||||||
string WhitelistedHardcodedSubs { get; set; }
|
string WhitelistedHardcodedSubs { get; set; }
|
||||||
|
|
||||||
string ListSyncLevel { get; set; }
|
string ListSyncLevel { get; set; }
|
||||||
string ImportExclusions { get; set; }
|
|
||||||
|
|
||||||
// Metadata Provider
|
// Metadata Provider
|
||||||
TMDbCountryCode CertificationCountry { get; set; }
|
TMDbCountryCode CertificationCountry { get; set; }
|
||||||
|
@ -6,7 +6,6 @@ namespace Radarr.Api.V3.Config
|
|||||||
public class ImportListConfigResource : RestResource
|
public class ImportListConfigResource : RestResource
|
||||||
{
|
{
|
||||||
public string ListSyncLevel { get; set; }
|
public string ListSyncLevel { get; set; }
|
||||||
public string ImportExclusions { get; set; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class ImportListConfigResourceMapper
|
public static class ImportListConfigResourceMapper
|
||||||
@ -16,7 +15,6 @@ public static ImportListConfigResource ToResource(IConfigService model)
|
|||||||
return new ImportListConfigResource
|
return new ImportListConfigResource
|
||||||
{
|
{
|
||||||
ListSyncLevel = model.ListSyncLevel,
|
ListSyncLevel = model.ListSyncLevel,
|
||||||
ImportExclusions = model.ImportExclusions
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user