mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
User configurable RSS Sync Time
New: RSS Sync Interval is now user configurable (Default 25 minutes)
This commit is contained in:
parent
23f8f534fc
commit
8280561e11
9 changed files with 84 additions and 7 deletions
|
@ -103,6 +103,13 @@ namespace NzbDrone.Web.Models
|
|||
[Description("Usenet provider retention in days (0 = unlimited)")]
|
||||
public int Retention { get; set; }
|
||||
|
||||
[DisplayName("RSS Sync Interval")]
|
||||
[Description("Check for new episodes every X minutes")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
[Required(AllowEmptyStrings = false, ErrorMessage = "You must enter a valid time in minutes")]
|
||||
[Range(15, 240, ErrorMessage = "Interval must be between 15 and 240 minutes")]
|
||||
public int RssSyncInterval { get; set; }
|
||||
|
||||
public List<NewznabDefinition> NewznabDefinitions { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue