mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 21:33:15 -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
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -31,6 +31,7 @@ namespace Ombi.Core.Notification
|
|||
Email,
|
||||
Pushbullet,
|
||||
Pushover,
|
||||
Slack
|
||||
Slack,
|
||||
Mattermost
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue