2021-09-17 04:07:03 -04:00
|
|
|
<template>
|
|
|
|
<div class="mb-3">
|
2021-09-21 01:02:41 -04:00
|
|
|
<label for="pushbullet-access-token" class="form-label">{{ $t("Access Token") }}</label>
|
2021-09-17 04:07:03 -04:00
|
|
|
<HiddenInput id="pushbullet-access-token" v-model="$parent.notification.pushbulletAccessToken" :required="true" autocomplete="one-time-code"></HiddenInput>
|
|
|
|
</div>
|
|
|
|
|
2021-09-21 01:02:41 -04:00
|
|
|
<i18n-t keypath="More info on:" tag="p" style="margin-top: 8px;">
|
|
|
|
<a href="https://docs.pushbullet.com" target="_blank">https://docs.pushbullet.com</a>
|
|
|
|
</i18n-t>
|
2021-09-17 04:07:03 -04:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
HiddenInput,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|