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

@ -1,5 +1,5 @@
using AutoMapper;
using Ombi.Models.Notifications;
using Ombi.Core.Models.UI;
using Ombi.Settings.Settings.Models.Notifications;
namespace Ombi.Mapping.Profiles
@ -9,6 +9,7 @@ namespace Ombi.Mapping.Profiles
public SettingsProfile()
{
CreateMap<EmailNotificationsViewModel, EmailNotificationSettings>().ReverseMap();
CreateMap<DiscordNotificationsViewModel, DiscordNotificationSettings>().ReverseMap();
}
}
}