]> git.proxmox.com Git - pve-manager.git/commitdiff
ui: esxi storage edit: add checkbox for skipping certificate validation
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 13 Mar 2024 06:47:37 +0000 (07:47 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 14 Mar 2024 14:17:43 +0000 (15:17 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/manager6/storage/ESXIEdit.js

index 9ffff32ae437e9a3f71b8b0f688907a7d343ff27..b105b1e3893f98973fe02903e316bdd9847f99c7 100644 (file)
@@ -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();
     },
 });