1
0
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:
Mark McDowall
2026-01-31 09:43:56 -08:00
parent 3e22ad59c3
commit 1d8da79172
5 changed files with 146 additions and 6 deletions
@@ -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;
}