feat: allow the user to configure PushDeer Server URL

This commit is contained in:
小造xu_zh
2023-07-20 09:06:37 +00:00
parent 1d9a28e9ab
commit d7e12dc92d
3 changed files with 15 additions and 1 deletions

View File

@@ -8,7 +8,14 @@ class PushDeer extends NotificationProvider {
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
let okMsg = "Sent Successfully.";
let pushdeerlink = "https://api2.pushdeer.com/message/push";
let defaultServer = "https://api2.pushdeer.com";
let endpoint = "/message/push";
let pushdeerlink;
if (notification.pushdeerServer) {
pushdeerlink = `${notification.pushdeerServer}${endpoint}`;
} else {
pushdeerlink = `${defaultServer}${endpoint}`;
}
let valid = msg != null && monitorJSON != null && heartbeatJSON != null;