mirror of
https://github.com/Radarr/Radarr
synced 2025-12-14 12:23:11 +01:00
Remove unused ImportExclusions property
This commit is contained in:
parent
1f5a84d202
commit
f76c97c3ce
2 changed files with 0 additions and 3 deletions
|
|
@ -62,7 +62,6 @@ public interface IConfigService
|
|||
string WhitelistedHardcodedSubs { get; set; }
|
||||
|
||||
string ListSyncLevel { get; set; }
|
||||
string ImportExclusions { get; set; }
|
||||
|
||||
// Metadata Provider
|
||||
TMDbCountryCode CertificationCountry { get; set; }
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@ namespace Radarr.Api.V3.Config
|
|||
public class ImportListConfigResource : RestResource
|
||||
{
|
||||
public string ListSyncLevel { get; set; }
|
||||
public string ImportExclusions { get; set; }
|
||||
}
|
||||
|
||||
public static class ImportListConfigResourceMapper
|
||||
|
|
@ -16,7 +15,6 @@ public static ImportListConfigResource ToResource(IConfigService model)
|
|||
return new ImportListConfigResource
|
||||
{
|
||||
ListSyncLevel = model.ListSyncLevel,
|
||||
ImportExclusions = model.ImportExclusions
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue