mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-31 19:50:40 +00:00
19 lines
629 B
Vue
19 lines
629 B
Vue
<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
|
|
href="https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook"
|
|
target="_blank"
|
|
>here</a>.
|
|
</div>
|
|
</div>
|
|
</template>
|