Remove unused ImportExclusions property

pull/10287/head
Bogdan 1 month ago committed by Qstick
parent 1f5a84d202
commit f76c97c3ce

@ -62,7 +62,6 @@ namespace NzbDrone.Core.Configuration
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 @@ namespace Radarr.Api.V3.Config
return new ImportListConfigResource
{
ListSyncLevel = model.ListSyncLevel,
ImportExclusions = model.ImportExclusions
};
}
}

Loading…
Cancel
Save