mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Bind any collection to SignalR with a single call.
This commit is contained in:
parent
87a5dc7869
commit
a6aba16902
13 changed files with 106 additions and 26 deletions
13
NzbDrone.Api/RootFolders/RootFolderConnection.cs
Normal file
13
NzbDrone.Api/RootFolders/RootFolderConnection.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using NzbDrone.Api.SignalR;
|
||||
using NzbDrone.Core.RootFolders;
|
||||
|
||||
namespace NzbDrone.Api.RootFolders
|
||||
{
|
||||
public class RootFolderConnection : BasicResourceConnection<RootFolder>
|
||||
{
|
||||
public override string Resource
|
||||
{
|
||||
get { return "RootFolder"; }
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue