From 0892f0c8510c3aeab565710a7d8bcfdd45a5e53a Mon Sep 17 00:00:00 2001 From: Andrew Simachev Date: Fri, 6 Jun 2025 11:26:02 +0200 Subject: [PATCH] feat: add 'Read all messages' action to Sudo menu in debug menu --- electron/js/menu.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electron/js/menu.js b/electron/js/menu.js index 55c6c15708..b1578571a0 100644 --- a/electron/js/menu.js +++ b/electron/js/menu.js @@ -367,6 +367,8 @@ class MenuManager { { label: 'Reset onboarding', click: () => Util.send(this.win, 'commandGlobal', 'resetOnboarding') }, + { label: 'Read all messages', click: () => Util.send(this.win, 'commandGlobal', 'readAllMessages') }, + Separator, { label: 'Relaunch', click: () => Api.exit(this.win, true) },