2022-05-23 01:32:36 -07:00
|
|
|
<template>
|
|
|
|
<div class="mb-3">
|
2022-05-23 12:08:56 -07:00
|
|
|
<label for="ntfy-ntfytopic" class="form-label">{{ $t("ntfy Topic") }}</label>
|
2022-05-23 01:32:36 -07:00
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input id="ntfy-ntfytopic" v-model="$parent.notification.ntfytopic" type="text" class="form-control" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="ntfy-server-url" class="form-label">{{ $t("Server URL") }}</label>
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input id="ntfy-server-url" v-model="$parent.notification.ntfyserverurl" type="text" class="form-control" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="ntfy-priority" class="form-label">{{ $t("Priority") }}</label>
|
2022-05-23 12:08:11 -07:00
|
|
|
<input id="ntfy-priority" v-model="$parent.notification.ntfyPriority" type="number" class="form-control" required min="1" max="5" step="1">
|
2022-05-23 01:32:36 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
mounted() {
|
|
|
|
if (typeof this.$parent.notification.ntfyPriority === "undefined") {
|
2022-05-23 12:11:01 -07:00
|
|
|
this.$parent.notification.ntfyserverurl = "https://ntfy.sh";
|
2022-05-23 12:08:11 -07:00
|
|
|
this.$parent.notification.ntfyPriority = 5;
|
2022-05-23 01:32:36 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|