Implemented mattermost notifications based on slack notification

This commit is contained in:
anonaut 2017-03-13 23:43:42 +01:00
commit b287c8655f
21 changed files with 579 additions and 2 deletions

View file

@ -70,6 +70,9 @@ namespace Ombi.Core.Notification
case TransportType.Slack:
content = notification.SlackNotification;
break;
case TransportType.Mattermost:
content = notification.MattermostNotification;
break;
default:
throw new ArgumentOutOfRangeException(nameof(transportType), transportType, null);
}