1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-02 14:17:19 +02:00

Remove unused ImportExclusions property

This commit is contained in:
Bogdan 2024-08-11 16:12:17 +03:00 committed by Qstick
parent 1f5a84d202
commit f76c97c3ce
2 changed files with 0 additions and 3 deletions

View File

@ -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; }

View File

@ -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
};
}
}