1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -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,6 +1,7 @@
using System;
using Microsoft.AspNetCore.Mvc;
using NzbDrone.Core.Notifications;
using NzbDrone.SignalR;
using Radarr.Http;
namespace Radarr.Api.V3.Notifications
@@ -11,8 +12,8 @@ namespace Radarr.Api.V3.Notifications
public static readonly NotificationResourceMapper ResourceMapper = new ();
public static readonly NotificationBulkResourceMapper BulkResourceMapper = new ();
public NotificationController(NotificationFactory notificationFactory)
: base(notificationFactory, "notification", ResourceMapper, BulkResourceMapper)
public NotificationController(IBroadcastSignalRMessage signalRBroadcaster, NotificationFactory notificationFactory)
: base(signalRBroadcaster, notificationFactory, "notification", ResourceMapper, BulkResourceMapper)
{
}