mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-01 19:32:34 +02:00
refactor(server): 调整通知服务顺序并移除重复项
- 在通知服务列表中添加 PushPlusPlus 服务 - 移除重复的 PushPlusPlus 服务 - 优化通知服务的组织结构
This commit is contained in:
parent
6f72ddbb72
commit
c7b8055cdc
1 changed files with 2 additions and 2 deletions
|
@ -129,6 +129,7 @@ class Notification {
|
||||||
new Pushbullet(),
|
new Pushbullet(),
|
||||||
new PushDeer(),
|
new PushDeer(),
|
||||||
new Pushover(),
|
new Pushover(),
|
||||||
|
new PushPlusPlus(),
|
||||||
new Pushy(),
|
new Pushy(),
|
||||||
new RocketChat(),
|
new RocketChat(),
|
||||||
new ServerChan(),
|
new ServerChan(),
|
||||||
|
@ -159,8 +160,7 @@ class Notification {
|
||||||
new Cellsynt(),
|
new Cellsynt(),
|
||||||
new Wpush(),
|
new Wpush(),
|
||||||
new SendGrid(),
|
new SendGrid(),
|
||||||
new YZJ(),
|
new YZJ()
|
||||||
new PushPlusPlus()
|
|
||||||
];
|
];
|
||||||
for (let item of list) {
|
for (let item of list) {
|
||||||
if (! item.name) {
|
if (! item.name) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue