mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
Pneumatic added to client side
New: Pneumatic added as a download client
This commit is contained in:
parent
8854269a43
commit
4052db7502
9 changed files with 36 additions and 6 deletions
|
@ -111,7 +111,8 @@ namespace NzbDrone.Web.Controllers
|
|||
SabTvCategorySelectList = tvCategorySelectList,
|
||||
DownloadClient = (int)_configProvider.DownloadClient,
|
||||
BlackholeDirectory = _configProvider.BlackholeDirectory,
|
||||
DownloadClientSelectList = new SelectList(downloadClientTypes, "Key", "Value")
|
||||
DownloadClientSelectList = new SelectList(downloadClientTypes, "Key", "Value"),
|
||||
PneumaticDirectory = _configProvider.PneumaticDirectory
|
||||
};
|
||||
|
||||
return View(model);
|
||||
|
@ -430,6 +431,7 @@ namespace NzbDrone.Web.Controllers
|
|||
_configProvider.SabDropDirectory = data.DownloadClientDropDirectory;
|
||||
_configProvider.BlackholeDirectory = data.BlackholeDirectory;
|
||||
_configProvider.DownloadClient = (DownloadClientType)data.DownloadClient;
|
||||
_configProvider.PneumaticDirectory = data.PneumaticDirectory;
|
||||
|
||||
return GetSuccessResult();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue