mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-21 22:05:43 -04:00
20 lines
559 B
C#
20 lines
559 B
C#
using NzbDrone.Core.Configuration;
|
|
using Radarr.Http;
|
|
|
|
namespace Radarr.Api.V4.Config
|
|
{
|
|
[V4ApiController("config/downloadclient")]
|
|
public class DownloadClientConfigController : ConfigController<DownloadClientConfigResource>
|
|
{
|
|
public DownloadClientConfigController(IConfigService configService)
|
|
: base(configService)
|
|
{
|
|
}
|
|
|
|
protected override DownloadClientConfigResource ToResource(IConfigService model)
|
|
{
|
|
return DownloadClientConfigResourceMapper.ToResource(model);
|
|
}
|
|
}
|
|
}
|