1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-24 08:32:23 +02:00

Add url to pushover notification (#5055)
Some checks failed
Auto Test / check-linters (push) Failing after 56s
Auto Test / auto-test (18, ARM64) (push) Has been skipped
Auto Test / auto-test (18, macos-latest) (push) Has been skipped
Auto Test / auto-test (18, ubuntu-latest) (push) Has been skipped
Auto Test / auto-test (18, windows-latest) (push) Has been skipped
Auto Test / auto-test (20.5, ARM64) (push) Has been skipped
Auto Test / auto-test (20.5, macos-latest) (push) Has been skipped
Auto Test / auto-test (20.5, ubuntu-latest) (push) Has been skipped
Auto Test / auto-test (20.5, windows-latest) (push) Has been skipped
Auto Test / armv7-simple-test (18, ARMv7) (push) Has been skipped
Auto Test / armv7-simple-test (20, ARMv7) (push) Has been skipped
Auto Test / e2e-test (push) Has been skipped
CodeQL / Analyze (go) (push) Failing after 27s
CodeQL / Analyze (javascript-typescript) (push) Failing after 21s
Merge Conflict Labeler / Labeling (push) Has been skipped
json-yaml-validate / json-yaml-validate (push) Successful in 8s
Automatically close stale issues / stale (push) Successful in 12s

Co-authored-by: Frank Elsinga <frank@elsinga.de>
This commit is contained in:
Aizat Faiz 2024-08-28 09:24:29 +08:00 committed by GitHub
parent b059c19069
commit 01210ce88d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,3 +1,6 @@
const { getMonitorRelativeURL } = require("../../src/util");
const { setting } = require("../util-server");
const NotificationProvider = require("./notification-provider");
const axios = require("axios");
@ -23,6 +26,12 @@ class Pushover extends NotificationProvider {
"html": 1,
};
const baseURL = await setting("primaryBaseURL");
if (baseURL && monitorJSON) {
data["url"] = baseURL + getMonitorRelativeURL(monitorJSON.id);
data["url_title"] = "Link to Monitor";
}
if (notification.pushoverdevice) {
data.device = notification.pushoverdevice;
}