uptime-kuma/src/components/notifications/Pushbullet.vue

21 lines
629 B
Vue
Raw Normal View History

<template>
<div class="mb-3">
2021-09-21 05:02:41 +00:00
<label for="pushbullet-access-token" class="form-label">{{ $t("Access Token") }}</label>
2022-10-13 11:28:02 +00:00
<HiddenInput id="pushbullet-access-token" v-model="$parent.notification.pushbulletAccessToken" :required="true" autocomplete="new-password"></HiddenInput>
</div>
2021-09-30 11:22:17 +00:00
<i18n-t tag="p" keypath="More info on:" style="margin-top: 8px;">
2021-09-21 05:02:41 +00:00
<a href="https://docs.pushbullet.com" target="_blank">https://docs.pushbullet.com</a>
</i18n-t>
</template>
<script>
import HiddenInput from "../HiddenInput.vue";
export default {
components: {
HiddenInput,
},
2021-09-30 11:22:17 +00:00
};
</script>