From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 7EDED71568 for ; Mon, 4 Oct 2021 08:09:31 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 67F6E16D0D for ; Mon, 4 Oct 2021 08:09:01 +0200 (CEST) Received: from kvmformation3.odiso.net (globalOdiso.M6Lille.odiso.net [89.248.211.242]) by firstgate.proxmox.com (Proxmox) with ESMTP id 205D116CEE for ; Mon, 4 Oct 2021 08:08:59 +0200 (CEST) Received: by kvmformation3.odiso.net (Postfix, from userid 0) id A993B12437A; Mon, 4 Oct 2021 08:08:52 +0200 (CEST) From: Alexandre Derumier To: pve-devel@lists.proxmox.com Date: Mon, 4 Oct 2021 08:08:50 +0200 Message-Id: <20211004060851.2084800-2-aderumier@odiso.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20211004060851.2084800-1-aderumier@odiso.com> References: <20211004060851.2084800-1-aderumier@odiso.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.856 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% HEADER_FROM_DIFFERENT_DOMAINS 0.249 From and EnvelopeFrom 2nd level mail domains are different KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods KHOP_HELO_FCRDNS 0.399 Relay HELO differs from its IP's reverse DNS NO_DNS_FOR_FROM 0.001 Envelope sender has no MX or A DNS records SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record Subject: [pve-devel] [PATCH v2 pve-manager 1/2] permpathstore: add sdn zones X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Oct 2021 06:09:31 -0000 Signed-off-by: Alexandre Derumier --- www/manager6/data/PermPathStore.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/www/manager6/data/PermPathStore.js b/www/manager6/data/PermPathStore.js index 1dc276b6..cf702c03 100644 --- a/www/manager6/data/PermPathStore.js +++ b/www/manager6/data/PermPathStore.js @@ -10,6 +10,7 @@ Ext.define('PVE.data.PermPathStore', { { 'value': '/access/realm' }, { 'value': '/nodes' }, { 'value': '/pool' }, + { 'value': '/sdn/zones' }, { 'value': '/storage' }, { 'value': '/vms' }, ], @@ -32,6 +33,8 @@ Ext.define('PVE.data.PermPathStore', { break; case 'lxc': path = '/vms/' + record.get('vmid'); break; + case 'sdn': path = '/sdn/zones/' + record.get('sdn'); + break; case 'storage': path = '/storage/' + record.get('storage'); break; case 'pool': path = '/pool/' + record.get('pool'); -- 2.30.2