mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-31 03:30:39 +00:00
4e4ab0577e
Co-authored-by: Adam Stachowicz <saibamenppl@gmail.com>
54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
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 Slack from "./Slack.vue";
|
|
import RocketChat from "./RocketChat.vue";
|
|
import Teams from "./Teams.vue";
|
|
import Pushover from "./Pushover.vue";
|
|
import Pushy from "./Pushy.vue";
|
|
import Octopush from "./Octopush.vue";
|
|
import PromoSMS from "./PromoSMS.vue";
|
|
import LunaSea from "./LunaSea.vue";
|
|
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";
|
|
import Matrix from "./Matrix.vue";
|
|
import AliyunSMS from "./AliyunSms.vue";
|
|
import DingDing from "./DingDing.vue";
|
|
|
|
/**
|
|
* Manage all notification form.
|
|
*
|
|
* @type { Record<string, any> }
|
|
*/
|
|
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,
|
|
"lunasea": LunaSea,
|
|
"Feishu": Feishu,
|
|
"AliyunSMS": AliyunSMS,
|
|
"apprise": Apprise,
|
|
"pushbullet": Pushbullet,
|
|
"line": Line,
|
|
"mattermost": Mattermost,
|
|
"matrix": Matrix,
|
|
"DingDing":DingDing
|
|
}
|
|
|
|
export default NotificationFormList
|