You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.3 KiB
25 lines
1.3 KiB
2 years ago
|
<template>
|
||
|
<div class="mb-3">
|
||
|
<label for="opsgenie-region" class="form-label">{{ $t("Region") }}<span style="color: red;"><sup>*</sup></span></label>
|
||
|
<select id="opsgenie-region" v-model="$parent.notification.opsgenieRegion" class="form-select" required>
|
||
|
<option value="us">
|
||
|
US (Default)
|
||
|
</option>
|
||
|
<option value="eu">
|
||
|
EU
|
||
|
</option>
|
||
|
</select>
|
||
|
<label for="opsgenie-apikey" class="form-label">{{ $t("API Key") }}<span style="color: red;"><sup>*</sup></span></label>
|
||
|
<input id="opsgenie-apikey" v-model="$parent.notification.opsgenieApiKey" type="text" class="form-control" required>
|
||
|
<label for="opsgenie-priority" class="form-label">{{ $t("Priority") }}</label>
|
||
|
<input id="opsgenie-priority" v-model="$parent.notification.opsgeniePriority" type="number" class="form-control" min="1" max="5" step="1">
|
||
|
|
||
|
<div class="form-text">
|
||
|
<span style="color: red;"><sup>*</sup></span>{{ $t("Required") }}
|
||
|
<i18n-t tag="p" keypath="aboutWebhooks" style="margin-top: 8px;">
|
||
|
<a href="https://docs.opsgenie.com/docs/alert-api" target="_blank">https://docs.opsgenie.com/docs/alert-api</a>
|
||
|
</i18n-t>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|