mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
Pneumatic added to client side
New: Pneumatic added as a download client
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user