1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Fixed: Minor improvements and translations for managing bulk indexers, lists and clients

This commit is contained in:
Bogdan
2023-07-10 22:37:47 +03:00
parent 7dde88387a
commit 48b9c1e8b9
21 changed files with 208 additions and 100 deletions
@@ -6,8 +6,8 @@ namespace Radarr.Api.V3.Indexers
[V3ApiController]
public class IndexerController : ProviderControllerBase<IndexerResource, IndexerBulkResource, IIndexer, IndexerDefinition>
{
public static readonly IndexerResourceMapper ResourceMapper = new IndexerResourceMapper();
public static readonly IndexerBulkResourceMapper BulkResourceMapper = new IndexerBulkResourceMapper();
public static readonly IndexerResourceMapper ResourceMapper = new ();
public static readonly IndexerBulkResourceMapper BulkResourceMapper = new ();
public IndexerController(IndexerFactory indexerFactory)
: base(indexerFactory, "indexer", ResourceMapper, BulkResourceMapper)