2021-09-12 17:46:59 +00:00
|
|
|
<template>
|
|
|
|
<div class="mb-3">
|
2021-09-21 05:02:41 +00:00
|
|
|
<label for="teams-webhookurl" class="form-label">{{ $t("Webhook URL") }}</label>
|
2021-09-12 17:46:59 +00:00
|
|
|
<input
|
|
|
|
id="teams-webhookurl"
|
|
|
|
v-model="$parent.notification.webhookUrl"
|
|
|
|
type="text"
|
|
|
|
class="form-control"
|
|
|
|
required
|
|
|
|
/>
|
2021-09-30 11:22:17 +00:00
|
|
|
<i18n-t tag="div" keypath="wayToGetTeamsURL" class="form-text">
|
2021-09-12 17:46:59 +00:00
|
|
|
<a
|
2021-09-13 12:25:41 +00:00
|
|
|
href="https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook"
|
2021-09-12 17:46:59 +00:00
|
|
|
target="_blank"
|
2021-09-21 05:02:41 +00:00
|
|
|
>{{ $t("here") }}</a>
|
|
|
|
</i18n-t>
|
2021-09-12 17:46:59 +00:00
|
|
|
</div>
|
|
|
|
</template>
|