2021-09-17 08:07:03 +00:00
|
|
|
<template>
|
|
|
|
<div class="mb-3">
|
2021-09-21 05:02:41 +00:00
|
|
|
<label for="slack-webhook-url" class="form-label">{{ $t("Webhook URL") }}<span style="color: red;"><sup>*</sup></span></label>
|
2021-09-17 08:07:03 +00:00
|
|
|
<input id="slack-webhook-url" v-model="$parent.notification.slackwebhookURL" type="text" class="form-control" required>
|
2021-09-21 05:02:41 +00:00
|
|
|
<label for="slack-username" class="form-label">{{ $t("Username") }}</label>
|
2021-09-17 08:07:03 +00:00
|
|
|
<input id="slack-username" v-model="$parent.notification.slackusername" type="text" class="form-control">
|
2021-09-21 05:02:41 +00:00
|
|
|
<label for="slack-iconemo" class="form-label">{{ $t("Icon Emoji") }}</label>
|
2021-09-17 08:07:03 +00:00
|
|
|
<input id="slack-iconemo" v-model="$parent.notification.slackiconemo" type="text" class="form-control">
|
2021-09-21 05:02:41 +00:00
|
|
|
<label for="slack-channel" class="form-label">{{ $t("Channel Name") }}</label>
|
2021-09-17 08:07:03 +00:00
|
|
|
<input id="slack-channel-name" v-model="$parent.notification.slackchannel" type="text" class="form-control">
|
2021-10-07 09:39:58 +00:00
|
|
|
|
2021-09-17 08:07:03 +00:00
|
|
|
<div class="form-text">
|
2021-09-21 05:02:41 +00:00
|
|
|
<span style="color: red;"><sup>*</sup></span>{{ $t("Required") }}
|
2021-10-06 16:04:13 +00:00
|
|
|
<i18n-t tag="p" keypath="aboutWebhooks" style="margin-top: 8px;">
|
2021-09-21 05:02:41 +00:00
|
|
|
<a href="https://api.slack.com/messaging/webhooks" target="_blank">https://api.slack.com/messaging/webhooks</a>
|
2021-10-06 16:04:13 +00:00
|
|
|
</i18n-t>
|
2021-09-17 08:07:03 +00:00
|
|
|
<p style="margin-top: 8px;">
|
2021-09-21 05:02:41 +00:00
|
|
|
{{ $t("aboutChannelName", [$t("slack")]) }}
|
2021-09-17 08:07:03 +00:00
|
|
|
</p>
|
|
|
|
<p style="margin-top: 8px;">
|
2021-09-21 05:02:41 +00:00
|
|
|
{{ $t("aboutKumaURL") }}
|
2021-09-17 08:07:03 +00:00
|
|
|
</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>
|
2021-09-17 08:07:03 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|