Files
Jackett-Jackett/src/Jackett.Test/TestIIndexerManagerServiceHelper.cs
chibidev c0b665062e Adding an aggregate torznab feed for all configured trackers (#1312)
* Adding an aggregate torznab feed for all configured trackers

This adds just a basic first implementation of a special
torznab feed that will make all configured trackers available
with all the supported query params.
- This should close #1247 
- This also contributes to #921 

* Adding missing file

* Add missing implementation from Test project
2017-04-30 10:06:29 +02:00

62 lines
1.4 KiB
C#

using Jackett.Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Jackett.Indexers;
using Newtonsoft.Json.Linq;
namespace JackettTest
{
class TestIndexerManagerServiceHelper : IIndexerManagerService
{
public JToken LastSavedConfig { get; set; }
public void DeleteIndexer(string name)
{
throw new NotImplementedException();
}
public IEnumerable<IIndexer> GetAllIndexers()
{
throw new NotImplementedException();
}
public IIndexer GetIndexer(string name)
{
throw new NotImplementedException();
}
public void InitIndexers()
{
throw new NotImplementedException();
}
public void SaveConfig(IIndexer indexer, JToken obj)
{
LastSavedConfig = obj;
}
public Task TestIndexer(string name)
{
throw new NotImplementedException();
}
public void InitCardigannIndexers(string path)
{
throw new NotImplementedException();
}
public void SortIndexers()
{
throw new NotImplementedException();
}
public void InitAggregateIndexer()
{
throw new NotImplementedException();
}
}
}