New: Advanced option to skip checking free space when importing files

This commit is contained in:
Mark McDowall 2014-04-04 09:25:18 -07:00
parent 52c5c19b0a
commit 0f9360bccb
5 changed files with 56 additions and 2 deletions

View file

@ -164,6 +164,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("DownloadedEpisodesScanInterval", value); }
}
public Boolean SkipFreeSpaceCheckWhenImporting
{
get { return GetValueBoolean("SkipFreeSpaceCheckWhenImporting", false); }
set { SetValue("SkipFreeSpaceCheckWhenImporting", value); }
}
public Boolean SetPermissionsLinux
{
get { return GetValueBoolean("SetPermissionsLinux", false); }