mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue