Implemented mattermost notifications based on slack notification

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

View file

@ -0,0 +1,12 @@
using System;
using Newtonsoft.Json;
namespace Ombi.Core.SettingModels
{
public sealed class MattermostNotificationSettings : NotificationSettings
{
public string WebhookUrl { get; set; }
public string Channel { get; set; }
public string Username { get; set; }
}
}