Merge branch 'master' into alerta

# Conflicts:
#	server/notification.js
#	src/components/notifications/index.js
#	src/languages/en.js
This commit is contained in:
Louis Lam
2022-03-04 14:10:37 +08:00
5 changed files with 98 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ const SerwerSMS = require("./notification-providers/serwersms");
const Stackfield = require("./notification-providers/stackfield");
const WeCom = require("./notification-providers/wecom");
const GoogleChat = require("./notification-providers/google-chat");
const Gorush = require("./notification-providers/gorush");
const Alerta = require("./notification-providers/alerta");
class Notification {
@@ -67,6 +68,7 @@ class Notification {
new Stackfield(),
new WeCom(),
new GoogleChat(),
new Gorush(),
new Alerta(),
];