mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-29 21:39:34 +02:00
Backlog searching will be disabled by default. Option is available in Settings/Misc
This commit is contained in:
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user