From 8ad6bd31d40f67c58f542cfc8775765eed7cb47b Mon Sep 17 00:00:00 2001
From: Philipp Bischoff
Date: Sun, 12 Dec 2021 00:08:33 +0100
Subject: [PATCH] Revert "order notification types by name"
This reverts commit 83984668608fc9f3ff8e01f6c90fec4d8ecffff3.
---
src/components/notifications/index.js | 42 +++++++++++++--------------
1 file changed, 21 insertions(+), 21 deletions(-)
diff --git a/src/components/notifications/index.js b/src/components/notifications/index.js
index a7c967edf..678106102 100644
--- a/src/components/notifications/index.js
+++ b/src/components/notifications/index.js
@@ -32,33 +32,33 @@ import GoogleChat from './GoogleChat.vue';
* @type { Record }
*/
const NotificationFormList = {
- "AliyunSMS": AliyunSMS,
- "apprise": Apprise,
- "Bark": Bark,
- "clicksendsms": ClickSendSMS,
- "DingDing": DingDing,
- "discord": Discord,
+ "telegram": Telegram,
+ "webhook": Webhook,
"smtp": STMP,
- "Feishu": Feishu,
- "Google Chat": GoogleChat,
+ "discord": Discord,
+ "teams": Teams,
+ "signal": Signal,
"gotify": Gotify,
- "line": Line,
- "lunasea": LunaSea,
- "matrix": Matrix,
- "mattermost": Mattermost,
- "octopush": Octopush,
- "promosms": PromoSMS,
- "pushbullet": Pushbullet,
+ "slack": Slack,
+ "rocket.chat": RocketChat,
"pushover": Pushover,
"pushy": Pushy,
- "rocket.chat": RocketChat,
+ "octopush": Octopush,
+ "promosms": PromoSMS,
+ "clicksendsms": ClickSendSMS,
+ "lunasea": LunaSea,
+ "Feishu": Feishu,
+ "AliyunSMS": AliyunSMS,
+ "apprise": Apprise,
+ "pushbullet": Pushbullet,
+ "line": Line,
+ "mattermost": Mattermost,
+ "matrix": Matrix,
+ "DingDing": DingDing,
+ "Bark": Bark,
"serwersms": SerwerSMS,
- "signal": Signal,
- "slack": Slack,
"stackfield": Stackfield,
- "teams": Teams,
- "telegram": Telegram,
- "webhook": Webhook
+ "Google Chat": GoogleChat
}
export default NotificationFormList