Added Recycle Bin to UI

This commit is contained in:
Mark McDowall 2012-09-04 00:11:27 -07:00
parent fcf0ca7299
commit 0a41a47c9d
3 changed files with 13 additions and 0 deletions

View file

@ -236,6 +236,7 @@ namespace NzbDrone.Web.Controllers
model.LaunchBrowser = _configFileProvider.LaunchBrowser;
model.AuthenticationType = selectedAuthenticationType;
model.AuthTypeSelectList = authTypeSelectList;
model.RecycleBin = _configProvider.RecycleBin;
return View(model);
}
@ -622,6 +623,7 @@ namespace NzbDrone.Web.Controllers
_configFileProvider.Port = data.Port;
_configFileProvider.LaunchBrowser = data.LaunchBrowser;
_configFileProvider.AuthenticationType = data.AuthenticationType;
_configProvider.RecycleBin = data.RecycleBin;
return GetSuccessResult();
}