mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
21 lines
589 B
Vue
21 lines
589 B
Vue
|
<template>
|
||
|
<div class="mb-3">
|
||
|
<label for="pushbullet-access-token" class="form-label">Access Token</label>
|
||
|
<HiddenInput id="pushbullet-access-token" v-model="$parent.notification.pushbulletAccessToken" :required="true" autocomplete="one-time-code"></HiddenInput>
|
||
|
</div>
|
||
|
|
||
|
<p style="margin-top: 8px;">
|
||
|
More info on: <a href="https://docs.pushbullet.com" target="_blank">https://docs.pushbullet.com</a>
|
||
|
</p>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import HiddenInput from "../HiddenInput.vue";
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
HiddenInput,
|
||
|
},
|
||
|
}
|
||
|
</script>
|