mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-29 13:25:13 +02:00
User configurable RSS Sync Time
New: RSS Sync Interval is now user configurable (Default 25 minutes)
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user