mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
Added categories to newznab section
This commit is contained in:
@@ -1,16 +1,25 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using NzbDrone.Core.Annotations;
|
||||
|
||||
namespace NzbDrone.Core.Indexers.Newznab
|
||||
{
|
||||
public class NewznabSettings : IIndexerSetting
|
||||
{
|
||||
public NewznabSettings()
|
||||
{
|
||||
Categories = new [] { 5030, 5040 };
|
||||
}
|
||||
|
||||
[FieldDefinition(0, Label = "URL")]
|
||||
public String Url { get; set; }
|
||||
|
||||
[FieldDefinition(1, Label = "API Key")]
|
||||
public String ApiKey { get; set; }
|
||||
|
||||
public IEnumerable<Int32> Categories { get; set; }
|
||||
|
||||
public bool IsValid
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user