mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 11:48:26 -07:00
Fixed: Removed Womble indexer.
This commit is contained in:
parent
060b9f6fd1
commit
2855090005
12 changed files with 29 additions and 226 deletions
|
@ -1,5 +1,6 @@
|
|||
using System.Collections.Generic;
|
||||
using NLog;
|
||||
using NzbDrone.Core.Indexers.Newznab;
|
||||
using NzbDrone.Test.Common;
|
||||
|
||||
namespace NzbDrone.Integration.Test
|
||||
|
@ -24,15 +25,15 @@ namespace NzbDrone.Integration.Test
|
|||
|
||||
protected override void InitializeTestTarget()
|
||||
{
|
||||
// Add Wombles
|
||||
Indexers.Post(new Api.Indexers.IndexerResource
|
||||
{
|
||||
EnableRss = true,
|
||||
ConfigContract = "NullConfig",
|
||||
Implementation = "Wombles",
|
||||
Name = "Wombles",
|
||||
EnableRss = false,
|
||||
EnableSearch = false,
|
||||
ConfigContract = nameof(NewznabSettings),
|
||||
Implementation = nameof(Newznab),
|
||||
Name = "NewznabTest",
|
||||
Protocol = Core.Indexers.DownloadProtocol.Usenet,
|
||||
Fields = new List<Api.ClientSchema.Field>()
|
||||
Fields = Api.ClientSchema.SchemaBuilder.ToSchema(new NewznabSettings())
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue