Backlog searching will be disabled by default. Option is available in Settings/Misc

This commit is contained in:
Mark McDowall 2012-01-14 16:01:51 -08:00
parent 3e9593ba3b
commit 11b6720cd1
8 changed files with 92 additions and 2 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;
using NzbDrone.Core.Model;
namespace NzbDrone.Web.Models
{
public class MiscSettingsModel
{
[DisplayName("Enable Backlog Searching")]
[Description("Should NzbDrone try tp download missing episodes automatically?")]
public bool EnableBacklogSearching { get; set; }
}
}