mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-20 14:02:34 +02:00

Some checks failed
Auto Test / auto-test (18, ARM64) (push) Has been cancelled
Auto Test / auto-test (18, macos-latest) (push) Has been cancelled
Auto Test / auto-test (18, ubuntu-latest) (push) Has been cancelled
Auto Test / auto-test (18, windows-latest) (push) Has been cancelled
Auto Test / auto-test (20, ARM64) (push) Has been cancelled
Auto Test / auto-test (20, macos-latest) (push) Has been cancelled
Auto Test / auto-test (20, ubuntu-latest) (push) Has been cancelled
Auto Test / auto-test (20, windows-latest) (push) Has been cancelled
Auto Test / armv7-simple-test (18, ARMv7) (push) Has been cancelled
Auto Test / armv7-simple-test (20, ARMv7) (push) Has been cancelled
Auto Test / check-linters (push) Has been cancelled
Auto Test / e2e-test (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
Merge Conflict Labeler / Labeling (push) Has been cancelled
validate / json-yaml-validate (push) Has been cancelled
validate / validate (push) Has been cancelled
Co-authored-by: Frank Elsinga <frank@elsinga.de>
49 lines
1.3 KiB
Vue
49 lines
1.3 KiB
Vue
<template>
|
|
<div class="mb-3">
|
|
<label for="notifery-api-key" class="form-label">{{
|
|
$t("API Key")
|
|
}}</label>
|
|
<HiddenInput
|
|
id="notifery-api-key"
|
|
v-model="$parent.notification.notiferyApiKey"
|
|
:required="true"
|
|
autocomplete="new-password"
|
|
></HiddenInput>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="notifery-title" class="form-label">{{ $t("Title") }}</label>
|
|
<input
|
|
id="notifery-title"
|
|
v-model="$parent.notification.notiferyTitle"
|
|
type="text"
|
|
class="form-control"
|
|
placeholder="Uptime Kuma Alert"
|
|
/>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="notifery-group" class="form-label">{{ $t("Group") }}</label>
|
|
<input
|
|
id="notifery-group"
|
|
v-model="$parent.notification.notiferyGroup"
|
|
type="text"
|
|
class="form-control"
|
|
:placeholder="$t('Optional')"
|
|
/>
|
|
</div>
|
|
|
|
<i18n-t tag="p" keypath="More info on:" style="margin-top: 8px;">
|
|
<a href="https://docs.notifery.com/api/event/" target="_blank">https://docs.notifery.com/api/event/</a>
|
|
</i18n-t>
|
|
</template>
|
|
|
|
<script>
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
|
|
export default {
|
|
components: {
|
|
HiddenInput,
|
|
},
|
|
};
|
|
</script>
|