New: Blackhole implemented, allowing clients other than SABnzbd to be used.

This commit is contained in:
Mark McDowall 2012-01-28 15:53:14 -08:00
parent d670e45001
commit a96ff2519a
6 changed files with 147 additions and 8 deletions

View file

@ -113,6 +113,7 @@ namespace NzbDrone.Web.Controllers
DownloadClientDropDirectory = _configProvider.SabDropDirectory,
SabTvCategorySelectList = tvCategorySelectList,
DownloadClient = (int)_configProvider.DownloadClient,
BlackholeDirectory = _configProvider.BlackholeDirectory,
DownloadClientSelectList = new SelectList(downloadClientTypes, "Key", "Value")
};
@ -393,6 +394,7 @@ namespace NzbDrone.Web.Controllers
_configProvider.SabUsername = data.SabUsername;
_configProvider.SabTvPriority = data.SabTvPriority;
_configProvider.SabDropDirectory = data.DownloadClientDropDirectory;
_configProvider.BlackholeDirectory = data.BlackholeDirectory;
_configProvider.DownloadClient = (DownloadClientType)data.DownloadClient;
return GetSuccessResult();