mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-25 10:40:47 +00:00
32 lines
1.1 KiB
Vue
32 lines
1.1 KiB
Vue
<template>
|
|
<div class="mb-3">
|
|
<label for="heiioncall-apikey" class="form-label">{{ $t("API Key")
|
|
}}<span style="color: red"><sup>*</sup></span></label>
|
|
<HiddenInput
|
|
id="heiioncall-apikey" v-model="$parent.notification.heiiOnCallApiKey" required="true"
|
|
autocomplete="false"
|
|
></HiddenInput>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="heiioncall-trigger-id" class="form-label">{{ $t("Trigger ID")
|
|
}}<span style="color: red"><sup>*</sup></span></label>
|
|
<HiddenInput
|
|
id="heiioncall-trigger-id" v-model="$parent.notification.heiiOnCallTriggerId" required="true"
|
|
autocomplete="false"
|
|
></HiddenInput>
|
|
</div>
|
|
<div class="form-text">
|
|
<i18n-t tag="p" keypath="wayToGetHeiiOnCallDetails" style="margin-top: 8px;">
|
|
<a href="https://heiioncall.com/docs" target="_blank">Heii On-Call Documentation</a>
|
|
</i18n-t>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
export default {
|
|
components: {
|
|
HiddenInput,
|
|
},
|
|
};
|
|
</script>
|