From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [45.144.208.40]) by lore.proxmox.com (Postfix) with ESMTPS id C570D1FF0E0 for ; Thu, 09 Jul 2026 14:01:35 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 79F7621886; Thu, 09 Jul 2026 13:58:28 +0200 (CEST) From: Lukas Wagner To: pbs-devel@lists.proxmox.com, pve-devel@lists.proxmox.com Subject: [PATCH proxmox-backup 22/29] ui: notification: enable new matcher UI Date: Thu, 9 Jul 2026 13:57:09 +0200 Message-ID: <20260709115716.299836-23-l.wagner@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260709115716.299836-1-l.wagner@proxmox.com> References: <20260709115716.299836-1-l.wagner@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1783598240268 X-SPAM-LEVEL: Spam detection results: 0 DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: NQPQWK6HQ563HMKPA3VC3ZTHJIUBO4GH X-Message-ID-Hash: NQPQWK6HQ563HMKPA3VC3ZTHJIUBO4GH X-MailFrom: l.wagner@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox Backup Server development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: By setting this feature flag, we enable the new improved match rule edit window. The feature flag allows us to bump the widget toolkit independently of the rest rest. Signed-off-by: Lukas Wagner --- www/Utils.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/www/Utils.js b/www/Utils.js index d6bfd459e..6d027e377 100644 --- a/www/Utils.js +++ b/www/Utils.js @@ -533,6 +533,9 @@ Ext.define('PBS.Utils', { iconCls: 'fa-bell-o', }, }; + + // Opt into the new matcher expressions + Proxmox.Schema.notificationMatcherExpressions = true; }, // Convert an ArrayBuffer to a base64url encoded string. -- 2.47.3