mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-25 22:46:31 -04:00
Add v5 Media Management endpoints
This commit is contained in:
@@ -4,14 +4,14 @@ using NzbDrone.Core.Configuration;
|
||||
using Sonarr.Http.REST;
|
||||
using Sonarr.Http.REST.Attributes;
|
||||
|
||||
namespace Sonarr.Api.V5.Config
|
||||
namespace Sonarr.Api.V5.Settings
|
||||
{
|
||||
public abstract class ConfigController<TResource> : RestController<TResource>
|
||||
public abstract class SettingsController<TResource> : RestController<TResource>
|
||||
where TResource : RestResource, new()
|
||||
{
|
||||
protected readonly IConfigService _configService;
|
||||
|
||||
protected ConfigController(IConfigService configService)
|
||||
protected SettingsController(IConfigService configService)
|
||||
{
|
||||
_configService = configService;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user