feat: mqtt alerts (#538)

This commit is contained in:
xninjax
2020-10-20 10:16:33 -06:00
committed by GitHub
parent 4fefe22a90
commit 68ff5bf836
7 changed files with 688 additions and 22 deletions
+2
View File
@@ -3,6 +3,7 @@ import {playSound} from './sound';
import {sendDesktopNotification} from './desktop';
import {sendDiscordMessage} from './discord';
import {sendEmail} from './email';
import {sendMqttMessage} from './mqtt';
import {sendPushbulletNotification} from './pushbullet';
import {sendPushoverNotification} from './pushover';
import {sendSlackMessage} from './slack';
@@ -25,4 +26,5 @@ export function sendNotification(link: Link, store: Store) {
sendTelegramMessage(link, store);
sendTweet(link, store);
sendTwilioMessage(link, store);
sendMqttMessage(link, store);
}