You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/src/Radarr.Api.V3/Indexers/IndexerFlagModule.cs

26 lines
626 B

using System;
using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Parser.Model;
using Radarr.Http;
namespace Radarr.Api.V3.Indexers
{
public class IndexerFlagModule : RadarrRestModule<IndexerFlagResource>
{
public IndexerFlagModule()
{
GetResourceAll = GetAll;
}
private List<IndexerFlagResource> GetAll()
{
return Enum.GetValues(typeof(IndexerFlags)).Cast<IndexerFlags>().Select(f => new IndexerFlagResource
{
Id = (int)f,
Name = f.ToString()
}).ToList();
}
}
}