mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
79 lines
2.0 KiB
Vue
79 lines
2.0 KiB
Vue
<template>
|
|
<div class="mb-3">
|
|
<label for="webhook-url" class="form-label">{{ $t("Post URL") }}</label>
|
|
<input
|
|
id="webhook-url"
|
|
v-model="$parent.notification.webhookURL"
|
|
type="url"
|
|
pattern="https?://.+"
|
|
class="form-control"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="webhook-content-type" class="form-label">{{
|
|
$t("Content Type")
|
|
}}</label>
|
|
<select
|
|
id="webhook-content-type"
|
|
v-model="$parent.notification.webhookContentType"
|
|
class="form-select"
|
|
required
|
|
>
|
|
<option value="json">application/json</option>
|
|
<option value="form-data">multipart/form-data</option>
|
|
</select>
|
|
|
|
<div class="form-text">
|
|
<p>{{ $t("webhookJsonDesc", ['"application/json"']) }}</p>
|
|
<i18n-t tag="p" keypath="webhookFormDataDesc">
|
|
<template #multipart>"multipart/form-data"</template>
|
|
<template #decodeFunction>
|
|
<strong>json_decode($_POST['data'])</strong>
|
|
</template>
|
|
</i18n-t>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<i18n-t
|
|
tag="label"
|
|
class="form-label"
|
|
for="additionalHeaders"
|
|
keypath="webhookAdditionalHeadersTitle"
|
|
>
|
|
</i18n-t>
|
|
<textarea
|
|
id="additionalHeaders"
|
|
v-model="$parent.notification.webhookAdditionalHeaders"
|
|
class="form-control"
|
|
:placeholder="headersPlaceholder"
|
|
></textarea>
|
|
<div class="form-text">
|
|
<i18n-t tag="p" keypath="webhookAdditionalHeadersDesc"> </i18n-t>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
computed: {
|
|
headersPlaceholder() {
|
|
return this.$t("Example:", [
|
|
`
|
|
{
|
|
"HeaderName": "HeaderValue"
|
|
}`,
|
|
]);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
textarea {
|
|
min-height: 200px;
|
|
}
|
|
</style>
|