Indexer and Search page work

This commit is contained in:
Qstick
2020-10-20 02:08:45 -04:00
parent 5c39ef2f76
commit f290afa68c
123 changed files with 3012 additions and 3274 deletions
@@ -20,11 +20,17 @@ namespace NzbDrone.Core.Indexers
public abstract string Name { get; }
public abstract DownloadProtocol Protocol { get; }
public abstract IndexerPrivacy Privacy { get; }
public int Priority { get; set; }
public abstract bool SupportsRss { get; }
public abstract bool SupportsSearch { get; }
public abstract bool SupportsMusic { get; }
public abstract bool SupportsTv { get; }
public abstract bool SupportsMovies { get; }
public abstract bool SupportsBooks { get; }
public IndexerBase(IIndexerStatusService indexerStatusService, IConfigService configService, Logger logger)
{
_indexerStatusService = indexerStatusService;