1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00

New: Sync updates to UI for providers (#10550)

This commit is contained in:
Bogdan
2024-10-18 23:02:42 +03:00
committed by GitHub
parent d90ee3ae11
commit a06792b923
7 changed files with 109 additions and 13 deletions
@@ -1,4 +1,5 @@
using NzbDrone.Core.Download;
using NzbDrone.SignalR;
using Radarr.Http;
namespace Radarr.Api.V3.DownloadClient
@@ -9,8 +10,8 @@ namespace Radarr.Api.V3.DownloadClient
public static readonly DownloadClientResourceMapper ResourceMapper = new ();
public static readonly DownloadClientBulkResourceMapper BulkResourceMapper = new ();
public DownloadClientController(IDownloadClientFactory downloadClientFactory)
: base(downloadClientFactory, "downloadclient", ResourceMapper, BulkResourceMapper)
public DownloadClientController(IBroadcastSignalRMessage signalRBroadcaster, IDownloadClientFactory downloadClientFactory)
: base(signalRBroadcaster, downloadClientFactory, "downloadclient", ResourceMapper, BulkResourceMapper)
{
}
}