Added the testing notifications and discord notification #865

This commit is contained in:
Jamie.Rees 2017-06-16 17:06:05 +01:00
parent 5970ee963d
commit d73899fc53
29 changed files with 487 additions and 202 deletions

View file

@ -4,6 +4,7 @@ using MailKit.Net.Smtp;
using MimeKit;
using Ombi.Core.Settings;
using Ombi.Helpers;
using Ombi.Notifications.Interfaces;
using Ombi.Notifications.Models;
using Ombi.Notifications.Templates;
using Ombi.Settings.Settings.Models.Notifications;
@ -11,7 +12,7 @@ using Ombi.Store.Repository;
namespace Ombi.Notifications.Agents
{
public class EmailNotification : BaseNotification<EmailNotificationSettings>
public class EmailNotification : BaseNotification<EmailNotificationSettings>, IEmailNotification
{
public EmailNotification(ISettingsService<EmailNotificationSettings> settings, INotificationTemplatesRepository r) : base(settings, r)
{