From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 1718B1FF56B for ; Mon, 22 Apr 2024 10:32:55 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 48C67B473; Mon, 22 Apr 2024 10:32:02 +0200 (CEST) From: Lukas Wagner To: pve-devel@lists.proxmox.com Date: Mon, 22 Apr 2024 10:31:04 +0200 Message-Id: <20240422083116.99809-5-l.wagner@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240422083116.99809-1-l.wagner@proxmox.com> References: <20240422083116.99809-1-l.wagner@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.000 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH manager v6 04/16] ui: dc: backup: allow to set custom job id in advanced settings 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: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" This might be useful if somebody wants to match on the new 'backup-job' field in a notification match rule. Signed-off-by: Lukas Wagner --- www/manager6/Utils.js | 1 + www/manager6/panel/BackupAdvancedOptions.js | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js index 54aa8bac..5216198b 100644 --- a/www/manager6/Utils.js +++ b/www/manager6/Utils.js @@ -1963,6 +1963,7 @@ Ext.define('PVE.Utils', { singleton: true, constructor: function() { var me = this; + Ext.apply(me, me.utilities); Proxmox.Utils.override_task_descriptions({ diff --git a/www/manager6/panel/BackupAdvancedOptions.js b/www/manager6/panel/BackupAdvancedOptions.js index 0ea585a8..144819e7 100644 --- a/www/manager6/panel/BackupAdvancedOptions.js +++ b/www/manager6/panel/BackupAdvancedOptions.js @@ -67,6 +67,17 @@ Ext.define('PVE.panel.BackupAdvancedOptions', { }, column1: [ + { + xtype: 'pmxDisplayEditField', + vtype: 'ConfigId', + fieldLabel: gettext('Job ID'), + emptyText: gettext('Autogenerate'), + name: 'id', + allowBlank: true, + cbind: { + editable: '{isCreate}', + }, + }, { xtype: 'pveBandwidthField', name: 'bwlimit', @@ -135,6 +146,10 @@ Ext.define('PVE.panel.BackupAdvancedOptions', { ], column2: [ + { + xtype: 'displayfield', + value: gettext('Can be used in notification matchers to match this job.'), + }, { xtype: 'displayfield', value: gettext('Limit I/O bandwidth.'), -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel