summaryrefslogtreecommitdiffstats
path: root/src/components/notifications/ZohoCliq.vue
blob: 9a9cd7360fe6a5aa537ffd4aaf0c74ab2c29618e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
    <div class="mb-3">
        <label for="zcliq-webhookurl" class="form-label">{{ $t("Webhook URL") }}</label>
        <input
            id="zcliq-webhookurl"
            v-model="$parent.notification.webhookUrl"
            type="text"
            class="form-control"
            required
        />
        <i18n-t tag="div" keypath="wayToGetZohoCliqURL" class="form-text">
            <a
                href="https://www.zoho.com/cliq/help/platform/webhook-tokens.html"
                target="_blank"
            >{{ $t("here") }}</a>
        </i18n-t>
    </div>
</template>