summaryrefslogtreecommitdiffstats
path: root/src/components/notifications/Pushbullet.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/notifications/Pushbullet.vue')
-rw-r--r--src/components/notifications/Pushbullet.vue20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/notifications/Pushbullet.vue b/src/components/notifications/Pushbullet.vue
new file mode 100644
index 0000000..866576a
--- /dev/null
+++ b/src/components/notifications/Pushbullet.vue
@@ -0,0 +1,20 @@
+<template>
+ <div class="mb-3">
+ <label for="pushbullet-access-token" class="form-label">{{ $t("Access Token") }}</label>
+ <HiddenInput id="pushbullet-access-token" v-model="$parent.notification.pushbulletAccessToken" :required="true" autocomplete="new-password"></HiddenInput>
+ </div>
+
+ <i18n-t tag="p" keypath="More info on:" style="margin-top: 8px;">
+ <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,
+ },
+};
+</script>