Make NetImport sync interval work (needs some testing)

This commit is contained in:
Devin Buhl
2017-01-28 14:59:21 -05:00
parent 4abbf55ee4
commit b6e4f53597
10 changed files with 102 additions and 347 deletions

View File

@@ -105,6 +105,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("RssSyncInterval", value); }
}
public int NetImportSyncInterval
{
get { return GetValueInt("NetImportSyncInterval", 60); }
set { SetValue("NetImportSyncInterval", value); }
}
public int MinimumAge
{
get { return GetValueInt("MinimumAge", 0); }