2022-08-23 15:19:28 -04:00
|
|
|
<template>
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="goalert-base-url" class="form-label">{{ $t("Base URL") }}</label>
|
|
|
|
<div class="input-group mb-3">
|
2022-08-23 15:28:46 -04:00
|
|
|
<input id="goalert-base-url" v-model="$parent.notification.goAlertBaseURL" type="text" class="form-control" required>
|
2022-08-23 15:19:28 -04:00
|
|
|
</div>
|
|
|
|
<i18n-t tag="div" keypath="goAlertInfo" class="form-text">
|
|
|
|
<a href="https://goalert.me" target="_blank">https://goalert.me</a>
|
|
|
|
</i18n-t>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="goalert-token" class="form-label">{{ $t("Token") }}</label>
|
2022-10-13 07:28:02 -04:00
|
|
|
<HiddenInput id="goalert-token" v-model="$parent.notification.goAlertToken" autocomplete="new-password" :required="true"></HiddenInput>
|
2022-08-23 15:19:28 -04:00
|
|
|
|
|
|
|
<div class="form-text">
|
|
|
|
{{ $t("goAlertIntegrationKeyInfo") }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
HiddenInput,
|
|
|
|
},
|
2022-08-23 15:28:46 -04:00
|
|
|
};
|
2022-08-23 15:19:28 -04:00
|
|
|
</script>
|