uptime-kuma/src/components/notifications/RocketChat.vue

30 lines
1.9 KiB
Vue
Raw Normal View History

<template>
<div class="mb-3">
2021-09-21 05:02:41 +00:00
<label for="rocket-webhook-url" class="form-label">{{ $t("Webhook URL") }}<span style="color: red;"><sup>*</sup></span></label>
<input id="rocket-webhook-url" v-model="$parent.notification.rocketwebhookURL" type="text" class="form-control" required>
2021-09-21 05:02:41 +00:00
<label for="rocket-username" class="form-label">{{ $t("Username") }}</label>
<input id="rocket-username" v-model="$parent.notification.rocketusername" type="text" class="form-control">
2021-09-21 05:02:41 +00:00
<label for="rocket-iconemo" class="form-label">{{ $t("Icon Emoji") }}</label>
<input id="rocket-iconemo" v-model="$parent.notification.rocketiconemo" type="text" class="form-control">
2021-09-21 05:02:41 +00:00
<label for="rocket-channel" class="form-label">{{ $t("Channel Name") }}</label>
<input id="rocket-channel-name" v-model="$parent.notification.rocketchannel" type="text" class="form-control">
2021-09-21 05:02:41 +00:00
<label for="rocket-button-url" class="form-label">{{ $t("Uptime Kuma URL") }}</label>
<input id="rocket-button" v-model="$parent.notification.rocketbutton" type="text" class="form-control">
<div class="form-text">
2021-09-21 05:02:41 +00:00
<span style="color: red;"><sup>*</sup></span>{{ $t("Required") }}
2021-09-30 11:22:17 +00:00
<i18-t tag="p" keypath="aboutWebhooks" style="margin-top: 8px;">
2021-09-21 05:02:41 +00:00
<a href="https://docs.rocket.chat/guides/administration/administration/integrations" target="_blank">https://api.slack.com/messaging/webhooks</a>
</i18-t>
<p style="margin-top: 8px;">
2021-09-21 05:02:41 +00:00
{{ $t("aboutChannelName", [$t("rocket.chat")]) }}
</p>
<p style="margin-top: 8px;">
2021-09-21 05:02:41 +00:00
{{ $t("aboutKumaURL") }}
</p>
2021-09-30 11:22:17 +00:00
<i18n-t tag="p" keypath="emojiCheatSheet" style="margin-top: 8px;">
2021-09-21 05:02:41 +00:00
<a href="https://www.webfx.com/tools/emoji-cheat-sheet/" target="_blank">https://www.webfx.com/tools/emoji-cheat-sheet/</a>
</i18n-t>
</div>
</div>
</template>