|
|
|
@ -565,8 +565,8 @@
|
|
|
|
|
|
|
|
|
|
<h2 v-if="monitor.type !== 'push'" class="mt-5 mb-2">{{ $t("Advanced") }}</h2>
|
|
|
|
|
|
|
|
|
|
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' || monitor.type === 'json-query' " class="my-3 form-check">
|
|
|
|
|
<input id="expiry-notification" v-model="monitor.expiryNotification" class="form-check-input" type="checkbox">
|
|
|
|
|
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' || monitor.type === 'json-query' " class="my-3 form-check" :title="monitor.ignoreTls ? $t('ignoredTLSError') : ''">
|
|
|
|
|
<input id="expiry-notification" v-model="monitor.expiryNotification" class="form-check-input" type="checkbox" :disabled="monitor.ignoreTls">
|
|
|
|
|
<label class="form-check-label" for="expiry-notification">
|
|
|
|
|
{{ $t("Certificate Expiry Notification") }}
|
|
|
|
|
</label>
|
|
|
|
@ -1456,6 +1456,12 @@ message HealthCheckResponse {
|
|
|
|
|
}
|
|
|
|
|
this.monitor.game = newGameObject.keys[0];
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"monitor.ignoreTls"(newVal) {
|
|
|
|
|
if (newVal) {
|
|
|
|
|
this.monitor.expiryNotification = false;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
this.init();
|
|
|
|
|