From: Thomas Lamprecht Date: Wed, 13 Mar 2024 06:47:37 +0000 (+0100) Subject: ui: esxi storage edit: add checkbox for skipping certificate validation X-Git-Url: https://git.proxmox.com/?p=pve-manager.git;a=commitdiff_plain;h=57d552b5066d4da3bc6c4c6ae4406482cf9f577e ui: esxi storage edit: add checkbox for skipping certificate validation Signed-off-by: Thomas Lamprecht --- diff --git a/www/manager6/storage/ESXIEdit.js b/www/manager6/storage/ESXIEdit.js index 9ffff32a..b105b1e3 100644 --- a/www/manager6/storage/ESXIEdit.js +++ b/www/manager6/storage/ESXIEdit.js @@ -43,6 +43,18 @@ Ext.define('PVE.storage.ESXIInputPanel', { }, ]; + me.column2 = [ + { + xtype: 'proxmoxcheckbox', + name: 'skip-cert-verification', + fieldLabel: gettext('Skip Certificate Verification'), + value: false, + uncheckedValue: 0, + defaultValue: 0, + deleteDefaultValue: !me.isCreate, + }, + ]; + me.callParent(); }, });