2021-09-17 08:07:03 +00:00
|
|
|
<template>
|
2021-10-05 18:01:07 +00:00
|
|
|
<div class="mb-3">
|
|
|
|
<label for="octopush-version" class="form-label">Octopush API Version</label>
|
|
|
|
<select id="octopush-version" v-model="$parent.notification.octopushVersion" class="form-select">
|
2021-10-05 18:16:16 +00:00
|
|
|
<option value="2">Octopush (endpoint: api.octopush.com)</option>
|
|
|
|
<option value="1">Legacy Octopush-DM (endpoint: www.octopush-dm.com)</option>
|
2021-10-05 18:01:07 +00:00
|
|
|
</select>
|
|
|
|
<div class="form-text">
|
2021-10-12 08:29:18 +00:00
|
|
|
{{ $t("octopushLegacyHint") }}
|
2021-10-05 18:01:07 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-17 08:07:03 +00:00
|
|
|
<div class="mb-3">
|
|
|
|
<label for="octopush-key" class="form-label">API KEY</label>
|
|
|
|
<HiddenInput id="octopush-key" v-model="$parent.notification.octopushAPIKey" :required="true" autocomplete="one-time-code"></HiddenInput>
|
|
|
|
<label for="octopush-login" class="form-label">API LOGIN</label>
|
|
|
|
<input id="octopush-login" v-model="$parent.notification.octopushLogin" type="text" class="form-control" required>
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
2021-09-21 05:02:41 +00:00
|
|
|
<label for="octopush-type-sms" class="form-label">{{ $t("SMS Type") }}</label>
|
2021-09-17 08:07:03 +00:00
|
|
|
<select id="octopush-type-sms" v-model="$parent.notification.octopushSMSType" class="form-select">
|
2021-09-21 05:02:41 +00:00
|
|
|
<option value="sms_premium">{{ $t("octopushTypePremium") }}</option>
|
|
|
|
<option value="sms_low_cost">{{ $t("octopushTypeLowCost") }}</option>
|
2021-09-17 08:07:03 +00:00
|
|
|
</select>
|
2021-09-30 11:22:17 +00:00
|
|
|
<i18n-t tag="div" keypath="Check octopush prices" class="form-text">
|
2021-09-21 05:02:41 +00:00
|
|
|
<a href="https://octopush.com/tarifs-sms-international/" target="_blank">https://octopush.com/tarifs-sms-international/</a>
|
|
|
|
</i18n-t>
|
2021-09-17 08:07:03 +00:00
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
2021-09-21 05:02:41 +00:00
|
|
|
<label for="octopush-phone-number" class="form-label">{{ $t("octopushPhoneNumber") }}</label>
|
2021-09-17 08:07:03 +00:00
|
|
|
<input id="octopush-phone-number" v-model="$parent.notification.octopushPhoneNumber" type="text" class="form-control" required>
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
2021-09-21 05:02:41 +00:00
|
|
|
<label for="octopush-sender-name" class="form-label">{{ $t("octopushSMSSender") }}</label>
|
2021-09-17 08:07:03 +00:00
|
|
|
<input id="octopush-sender-name" v-model="$parent.notification.octopushSenderName" type="text" minlength="3" maxlength="11" class="form-control">
|
|
|
|
</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://octopush.com/api-sms-documentation/envoi-de-sms/" target="_blank">https://octopush.com/api-sms-documentation/envoi-de-sms/</a>
|
|
|
|
</i18n-t>
|
2021-09-17 08:07:03 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
HiddenInput,
|
|
|
|
},
|
2021-09-30 11:22:17 +00:00
|
|
|
};
|
2021-09-17 08:07:03 +00:00
|
|
|
</script>
|