Niyas
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
14 deletions
-
server/notification.js
|
|
@ -83,8 +83,6 @@ class Notification { |
|
|
|
return await Notification.smtp(notification, msg) |
|
|
|
|
|
|
|
} else if (notification.type === "discord") { |
|
|
|
let kumaURL = notification.discorduptimekumaUrl || "https://github.com/louislam/uptime-kuma"; |
|
|
|
let dashboardURL = notification.discorduptimekumaUrl + '/dashboard/' + monitorJSON["id"]; |
|
|
|
try { |
|
|
|
// If heartbeatJSON is null, assume we're testing.
|
|
|
|
if (heartbeatJSON == null) { |
|
|
@ -120,14 +118,6 @@ class Notification { |
|
|
|
name: "Error", |
|
|
|
value: heartbeatJSON["msg"], |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Visit Service Dashboard", |
|
|
|
value: "[Visit Dashboard]("+ dashboardURL + ")", |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Visit Uptime Kuma", |
|
|
|
value: "[Visit]("+ kumaURL +")", |
|
|
|
}, |
|
|
|
], |
|
|
|
}], |
|
|
|
} |
|
|
@ -158,10 +148,6 @@ class Notification { |
|
|
|
name: "Ping", |
|
|
|
value: heartbeatJSON["ping"] + "ms", |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Visit Uptime Kuma", |
|
|
|
value: "[Visit]("+ kumaURL +")", |
|
|
|
}, |
|
|
|
], |
|
|
|
}], |
|
|
|
} |
|
|
|