2021-09-12 17:46:59 +00:00
|
|
|
<template>
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="teams-webhookurl" class="form-label">Webhook URL</label>
|
|
|
|
<input
|
|
|
|
id="teams-webhookurl"
|
|
|
|
v-model="$parent.notification.webhookUrl"
|
|
|
|
type="text"
|
|
|
|
class="form-control"
|
|
|
|
required
|
|
|
|
/>
|
|
|
|
<div class="form-text">
|
|
|
|
You can learn how to create a webhook url
|
|
|
|
<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"
|
|
|
|
>here</a>.
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
name: "teams",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|