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
@@ -5,6 +5,7 @@ namespace NzbDrone.Api.Config
{
public class NetImportConfigResource : RestResource
{
public int NetImportSyncInterval { get; set; }
}
public static class NetImportConfigResourceMapper
@@ -13,6 +14,7 @@ namespace NzbDrone.Api.Config
{
return new NetImportConfigResource
{
NetImportSyncInterval = model.NetImportSyncInterval
};
}
}