uptime-kuma/src/components/notifications/index.js

81 lines
2.3 KiB
JavaScript
Raw Normal View History

import STMP from "./SMTP.vue";
import Telegram from "./Telegram.vue";
import Discord from "./Discord.vue";
import Webhook from "./Webhook.vue";
import Signal from "./Signal.vue";
import Gotify from "./Gotify.vue";
import Ntfy from "./Ntfy.vue";
import Slack from "./Slack.vue";
import RocketChat from "./RocketChat.vue";
import Teams from "./Teams.vue";
import Pushover from "./Pushover.vue";
import Pushy from "./Pushy.vue";
2022-01-20 23:42:03 -08:00
import TechulusPush from "./TechulusPush.vue";
import Octopush from "./Octopush.vue";
import PromoSMS from "./PromoSMS.vue";
import ClickSendSMS from "./ClickSendSMS.vue";
import LunaSea from "./LunaSea.vue";
2021-10-11 02:20:09 -07:00
import Feishu from "./Feishu.vue";
import Apprise from "./Apprise.vue";
import Pushbullet from "./Pushbullet.vue";
import Line from "./Line.vue";
import Mattermost from "./Mattermost.vue";
2021-10-05 11:03:56 -07:00
import Matrix from "./Matrix.vue";
2021-10-12 20:55:01 -07:00
import AliyunSMS from "./AliyunSms.vue";
2021-10-13 01:13:46 -07:00
import DingDing from "./DingDing.vue";
import Bark from "./Bark.vue";
import SerwerSMS from "./SerwerSMS.vue";
2022-04-13 09:30:32 -07:00
import Stackfield from "./Stackfield.vue";
2021-12-25 09:33:47 -08:00
import WeCom from "./WeCom.vue";
import GoogleChat from "./GoogleChat.vue";
2022-02-16 14:09:22 -08:00
import PagerDuty from "./PagerDuty.vue";
2022-01-09 09:05:11 -08:00
import Gorush from "./Gorush.vue";
2022-01-26 06:54:17 -08:00
import Alerta from "./Alerta.vue";
2022-01-27 23:02:28 -08:00
import OneBot from "./OneBot.vue";
2022-04-13 23:29:54 -07:00
import PushDeer from "./PushDeer.vue";
/**
* Manage all notification form.
*
* @type { Record<string, any> }
*/
2021-09-17 05:40:57 -07:00
const NotificationFormList = {
"telegram": Telegram,
"webhook": Webhook,
"smtp": STMP,
"discord": Discord,
"teams": Teams,
"signal": Signal,
"gotify": Gotify,
"ntfy": Ntfy,
"slack": Slack,
"rocket.chat": RocketChat,
"pushover": Pushover,
"pushy": Pushy,
2022-01-20 23:42:03 -08:00
"PushByTechulus": TechulusPush,
"octopush": Octopush,
"promosms": PromoSMS,
"clicksendsms": ClickSendSMS,
"lunasea": LunaSea,
2021-10-11 02:20:09 -07:00
"Feishu": Feishu,
"AliyunSMS": AliyunSMS,
"apprise": Apprise,
"pushbullet": Pushbullet,
"line": Line,
2021-10-05 11:03:56 -07:00
"mattermost": Mattermost,
"matrix": Matrix,
"DingDing": DingDing,
"Bark": Bark,
"serwersms": SerwerSMS,
"stackfield": Stackfield,
2021-12-25 09:33:47 -08:00
"WeCom": WeCom,
2022-01-26 06:54:17 -08:00
"GoogleChat": GoogleChat,
2022-02-16 14:09:22 -08:00
"PagerDuty": PagerDuty,
"gorush": Gorush,
2022-01-26 06:54:17 -08:00
"alerta": Alerta,
2022-01-27 23:02:28 -08:00
"OneBot": OneBot,
2022-04-13 23:29:54 -07:00
"PushDeer": PushDeer,
};
export default NotificationFormList;