mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-08 12:43:19 +02:00
Merge 1069cb5421 into 18fe4ec495
This commit is contained in:
commit
59a5bf1e64
1 changed files with 32 additions and 0 deletions
32
src/NzbDrone.Core/Indexers/Definitions/DesiGaane.cs
Normal file
32
src/NzbDrone.Core/Indexers/Definitions/DesiGaane.cs
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
using NLog;
|
||||
using NzbDrone.Core.Configuration;
|
||||
using NzbDrone.Core.Indexers.Definitions.Gazelle;
|
||||
using NzbDrone.Core.Messaging.Events;
|
||||
|
||||
namespace NzbDrone.Core.Indexers.Definitions;
|
||||
|
||||
public class DesiGaane : GazelleBase<GazelleSettings>
|
||||
{
|
||||
public override string Name => "DesiGaane";
|
||||
public override string[] IndexerUrls => new[] { "https://desigaane.rocks/" };
|
||||
public override string Description => "DesiGaane is a Private Torrent Tracker for DESI MUSIC";
|
||||
public override IndexerPrivacy Privacy => IndexerPrivacy.Private;
|
||||
|
||||
public DesiGaane(IIndexerHttpClient httpClient,
|
||||
IEventAggregator eventAggregator,
|
||||
IIndexerStatusService indexerStatusService,
|
||||
IConfigService configService,
|
||||
Logger logger)
|
||||
: base(httpClient, eventAggregator, indexerStatusService, configService, logger)
|
||||
{
|
||||
}
|
||||
|
||||
protected override IndexerCapabilities SetCapabilities()
|
||||
{
|
||||
var caps = new IndexerCapabilities();
|
||||
|
||||
caps.Categories.AddCategoryMapping(1, NewznabStandardCategory.Audio, "Music");
|
||||
|
||||
return caps;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue