mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Restrict nzbs based on release group, server side
New: Only grab NZBs if release group is wanted (configurable)
This commit is contained in:
parent
2a316e0b98
commit
67064ec495
7 changed files with 132 additions and 2 deletions
|
@ -514,6 +514,12 @@ namespace NzbDrone.Core.Providers.Core
|
|||
set { SetValue("MetadataUseBanners", value); }
|
||||
}
|
||||
|
||||
public virtual string AllowedReleaseGroups
|
||||
{
|
||||
get { return GetValue("AllowedReleaseGroups"); }
|
||||
set { SetValue("AllowedReleaseGroups", value); }
|
||||
}
|
||||
|
||||
private string GetValue(string key)
|
||||
{
|
||||
return GetValue(key, String.Empty);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue