mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00

* 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
62 lines
1.4 KiB
C#
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();
|
|
}
|
|
}
|
|
}
|