added the quality to a movie

This commit is contained in:
tidusjar 2020-05-03 23:33:20 +01:00
commit 1ea6a6dc48
4 changed files with 28 additions and 9 deletions

View file

@ -159,14 +159,17 @@ namespace Ombi.Store.Context
};
break;
case NotificationType.WelcomeEmail:
notificationToAdd = new NotificationTemplates
if (agent == NotificationAgent.Email)
{
NotificationType = notificationType,
Message = "Hello! You have been invited to use {ApplicationName}! You can login here: {ApplicationUrl}",
Subject = "Invite to {ApplicationName}",
Agent = agent,
Enabled = true,
};
notificationToAdd = new NotificationTemplates
{
NotificationType = notificationType,
Message = "Hello! You have been invited to use {ApplicationName}! You can login here: {ApplicationUrl}",
Subject = "Invite to {ApplicationName}",
Agent = agent,
Enabled = true,
};
}
break;
case NotificationType.IssueResolved:
notificationToAdd = new NotificationTemplates