mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-20 13:38:50 -04:00
Add gtxmessaging Notification Support (#4481)
Signed-off-by: Christoph Fichtmüller <cf@cfichtmueller.com> Co-authored-by: Frank Elsinga <frank@elsinga.de>
This commit is contained in:
parent
e927327bad
commit
49b6dacb4d
6 changed files with 96 additions and 4 deletions
|
@ -55,6 +55,7 @@ const GoAlert = require("./notification-providers/goalert");
|
|||
const SMSManager = require("./notification-providers/smsmanager");
|
||||
const ServerChan = require("./notification-providers/serverchan");
|
||||
const ZohoCliq = require("./notification-providers/zoho-cliq");
|
||||
const GtxMessaging = require("./notification-providers/gtx-messaging");
|
||||
|
||||
class Notification {
|
||||
|
||||
|
@ -126,7 +127,8 @@ class Notification {
|
|||
new Webhook(),
|
||||
new WeCom(),
|
||||
new GoAlert(),
|
||||
new ZohoCliq()
|
||||
new ZohoCliq(),
|
||||
new GtxMessaging(),
|
||||
];
|
||||
for (let item of list) {
|
||||
if (! item.name) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue