mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-22 03:42:55 +08:00
feat(notification): 新增 PushPlusPlus 通知支持
- 在 notification.js 中添加 PushPlusPlus 通知提供商 - 在 NotificationDialog.vue 中添加 PushPlusPlus 选项 - 在 notifications/index.js 中导入并注册 PushPlusPlus 组件
This commit is contained in:
@@ -39,6 +39,7 @@ const PromoSMS = require("./notification-providers/promosms");
|
||||
const Pushbullet = require("./notification-providers/pushbullet");
|
||||
const PushDeer = require("./notification-providers/pushdeer");
|
||||
const Pushover = require("./notification-providers/pushover");
|
||||
const PushPlusPlus = require("./notification-providers/pushplusplus");
|
||||
const Pushy = require("./notification-providers/pushy");
|
||||
const RocketChat = require("./notification-providers/rocket-chat");
|
||||
const SerwerSMS = require("./notification-providers/serwersms");
|
||||
@@ -158,7 +159,8 @@ class Notification {
|
||||
new Cellsynt(),
|
||||
new Wpush(),
|
||||
new SendGrid(),
|
||||
new YZJ()
|
||||
new YZJ(),
|
||||
new PushPlusPlus()
|
||||
];
|
||||
for (let item of list) {
|
||||
if (! item.name) {
|
||||
|
Reference in New Issue
Block a user