mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-27 14:39:51 -08:00
goalert provider missing semicolon fix for linter
This commit is contained in:
parent
65e6921a41
commit
40b9d9ed17
|
@ -12,7 +12,7 @@ class GoAlert extends NotificationProvider {
|
||||||
let parameters = {
|
let parameters = {
|
||||||
token: notification.goAlertToken,
|
token: notification.goAlertToken,
|
||||||
summary: msg,
|
summary: msg,
|
||||||
}
|
};
|
||||||
if (heartbeatJSON["status"] === UP) {
|
if (heartbeatJSON["status"] === UP) {
|
||||||
parameters["action"] = closeAction;
|
parameters["action"] = closeAction;
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ const TechulusPush = require("./notification-providers/techulus-push");
|
||||||
const Telegram = require("./notification-providers/telegram");
|
const Telegram = require("./notification-providers/telegram");
|
||||||
const Webhook = require("./notification-providers/webhook");
|
const Webhook = require("./notification-providers/webhook");
|
||||||
const WeCom = require("./notification-providers/wecom");
|
const WeCom = require("./notification-providers/wecom");
|
||||||
const GoAlert = require("./notification-providers/goalert")
|
const GoAlert = require("./notification-providers/goalert");
|
||||||
|
|
||||||
class Notification {
|
class Notification {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue