New: Cleanup Recycling Bin folders older than X days (0 to disable)

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Mark McDowall 2019-08-11 00:22:26 -07:00 committed by Qstick
parent 0496e6afc2
commit 699f19b352
7 changed files with 43 additions and 7 deletions

View file

@ -92,6 +92,12 @@ namespace NzbDrone.Core.Configuration
set { SetValue("RecycleBin", value); }
}
public int RecycleBinCleanupDays
{
get { return GetValueInt("RecycleBinCleanupDays", 7); }
set { SetValue("RecycleBinCleanupDays", value); }
}
public int RssSyncInterval
{
get { return GetValueInt("RssSyncInterval", 15); }