mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Implemented mattermost notifications based on slack notification
This commit is contained in:
parent
fa1540717b
commit
b287c8655f
21 changed files with 579 additions and 2 deletions
12
Ombi.Core/SettingModels/MattermostNotificationSettings.cs
Normal file
12
Ombi.Core/SettingModels/MattermostNotificationSettings.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue