From 40b9d9ed171c368aa428b572e0666d0af44bacc5 Mon Sep 17 00:00:00 2001 From: Muhammed Hussein Karimi Date: Tue, 23 Aug 2022 22:26:20 +0430 Subject: [PATCH] goalert provider missing semicolon fix for linter --- server/notification-providers/goalert.js | 2 +- server/notification.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/notification-providers/goalert.js b/server/notification-providers/goalert.js index 9a63ca5b4..f3ab18d5e 100644 --- a/server/notification-providers/goalert.js +++ b/server/notification-providers/goalert.js @@ -12,7 +12,7 @@ class GoAlert extends NotificationProvider { let parameters = { token: notification.goAlertToken, summary: msg, - } + }; if (heartbeatJSON["status"] === UP) { parameters["action"] = closeAction; } diff --git a/server/notification.js b/server/notification.js index e7afbdc9b..3306a53ac 100644 --- a/server/notification.js +++ b/server/notification.js @@ -38,7 +38,7 @@ const TechulusPush = require("./notification-providers/techulus-push"); const Telegram = require("./notification-providers/telegram"); const Webhook = require("./notification-providers/webhook"); const WeCom = require("./notification-providers/wecom"); -const GoAlert = require("./notification-providers/goalert") +const GoAlert = require("./notification-providers/goalert"); class Notification {