From 83984668608fc9f3ff8e01f6c90fec4d8ecffff3 Mon Sep 17 00:00:00 2001
From: Philipp Bischoff
Date: Sat, 11 Dec 2021 23:50:03 +0100
Subject: [PATCH] order notification types by name
---
src/components/notifications/index.js | 44 +++++++++++++--------------
1 file changed, 22 insertions(+), 22 deletions(-)
diff --git a/src/components/notifications/index.js b/src/components/notifications/index.js
index 678106102..a7c967edf 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 = {
- "telegram": Telegram,
- "webhook": Webhook,
- "smtp": STMP,
- "discord": Discord,
- "teams": Teams,
- "signal": Signal,
- "gotify": Gotify,
- "slack": Slack,
- "rocket.chat": RocketChat,
- "pushover": Pushover,
- "pushy": Pushy,
- "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,
+ "clicksendsms": ClickSendSMS,
+ "DingDing": DingDing,
+ "discord": Discord,
+ "smtp": STMP,
+ "Feishu": Feishu,
+ "Google Chat": GoogleChat,
+ "gotify": Gotify,
+ "line": Line,
+ "lunasea": LunaSea,
+ "matrix": Matrix,
+ "mattermost": Mattermost,
+ "octopush": Octopush,
+ "promosms": PromoSMS,
+ "pushbullet": Pushbullet,
+ "pushover": Pushover,
+ "pushy": Pushy,
+ "rocket.chat": RocketChat,
"serwersms": SerwerSMS,
+ "signal": Signal,
+ "slack": Slack,
"stackfield": Stackfield,
- "Google Chat": GoogleChat
+ "teams": Teams,
+ "telegram": Telegram,
+ "webhook": Webhook
}
export default NotificationFormList