Merge pull request #395 from WillianRod/feat/add-microsoft-teams-notification

Add microsoft teams notification provider
This commit is contained in:
Louis Lam
2021-09-15 16:38:57 +08:00
committed by GitHub
4 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<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>
<script>
export default {
data() {
return {
name: "teams",
};
},
};
</script>