summaryrefslogtreecommitdiffstats
path: root/src/components/notifications/SIGNL4.vue
blob: d557c2d3871b7924e8ccb5d9861983c78708560a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
    <div class="mb-3">
        <label for="signl4-webhook-url" class="form-label">{{ $t("SIGNL4 Webhook URL") }}</label>
        <input
            id="signl4-webhook-url"
            v-model="$parent.notification.webhookURL"
            type="url"
            pattern="https?://.+"
            class="form-control"
            required
        />
        <i18n-t tag="div" keypath="signl4Docs" class="form-text">
            <a href="https://docs.signl4.com/integrations/uptime-kuma/uptime-kuma.html" target="_blank">SIGNL4 Docs</a>
        </i18n-t>
    </div>
</template>