mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 03:38:26 -07:00
Converted notifications to thingi provider
Fixed: Issues creating and saving Connects
This commit is contained in:
parent
ff7ce397ab
commit
27da44ba45
51 changed files with 299 additions and 761 deletions
20
src/NzbDrone.Core/Notifications/NotificationFactory.cs
Normal file
20
src/NzbDrone.Core/Notifications/NotificationFactory.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
using System.Collections.Generic;
|
||||
using NLog;
|
||||
using NzbDrone.Core.ThingiProvider;
|
||||
|
||||
namespace NzbDrone.Core.Notifications
|
||||
{
|
||||
public interface INotificationFactory : IProviderFactory<INotification, NotificationDefinition>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public class NotificationFactory : ProviderFactory<INotification, NotificationDefinition>, INotificationFactory
|
||||
{
|
||||
public NotificationFactory(INotificationRepository providerRepository, IEnumerable<INotification> providers, Logger logger)
|
||||
: base(providerRepository, providers, logger)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue