mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Backlog searching will be disabled by default. Option is available in Settings/Misc
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user