mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
Backlog searching will be disabled by default. Option is available in Settings/Misc
This commit is contained in:
parent
3e9593ba3b
commit
11b6720cd1
8 changed files with 92 additions and 2 deletions
15
NzbDrone.Web/Models/MiscSettingsModel.cs
Normal file
15
NzbDrone.Web/Models/MiscSettingsModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue