Added: Allow minimum seeders to be set on a per indexer basis. Pulled from Sonarr Upstream (#1624)

This commit is contained in:
Leonardo Galli
2017-06-12 14:47:05 +02:00
committed by GitHub
parent a460e89a8d
commit 9f4ce50dd6
30 changed files with 328 additions and 104 deletions
@@ -0,0 +1,7 @@
namespace NzbDrone.Core.Indexers
{
public static class IndexerDefaults
{
public const int MINIMUM_SEEDERS = 1;
}
}