implement google chat notification type

This commit is contained in:
Philipp Bischoff
2021-12-11 23:43:12 +01:00
parent 8bb8b0a53c
commit 8050cb8e99
4 changed files with 63 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ const DingDing = require("./notification-providers/dingding");
const Bark = require("./notification-providers/bark");
const SerwerSMS = require("./notification-providers/serwersms");
const Stackfield = require("./notification-providers/stackfield");
const GoogleChat = require("./notification-providers/google-chat");
class Notification {
@@ -62,6 +63,7 @@ class Notification {
new Bark(),
new SerwerSMS(),
new Stackfield(),
new GoogleChat()
];
for (let item of list) {