From 2c19dd213266121e800006c9500dbbc615b6cfdf Mon Sep 17 00:00:00 2001 From: mirivlad Date: Sun, 28 Jun 2026 03:23:19 +0800 Subject: [PATCH] Expose inbox and activity as global views --- plugins/activity/plugin.json | 17 +++++++++++++++++ plugins/browser-inbox/plugin.json | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/plugins/activity/plugin.json b/plugins/activity/plugin.json index 1b60b00..91139da 100644 --- a/plugins/activity/plugin.json +++ b/plugins/activity/plugin.json @@ -21,6 +21,23 @@ "entry": "frontend/src/index.js" }, "contributes": { + "views": [ + { + "id": "verstak.activity.view", + "title": "Activity", + "icon": "activity", + "component": "ActivityView" + } + ], + "sidebarItems": [ + { + "id": "verstak.activity.sidebar", + "title": "Activity", + "icon": "activity", + "view": "verstak.activity.view", + "position": 20 + } + ], "workspaceItems": [ { "id": "verstak.activity.workspace", diff --git a/plugins/browser-inbox/plugin.json b/plugins/browser-inbox/plugin.json index 1557521..695abe3 100644 --- a/plugins/browser-inbox/plugin.json +++ b/plugins/browser-inbox/plugin.json @@ -19,6 +19,23 @@ "entry": "frontend/src/index.js" }, "contributes": { + "views": [ + { + "id": "verstak.browser-inbox.view", + "title": "Browser Inbox", + "icon": "inbox", + "component": "BrowserInboxView" + } + ], + "sidebarItems": [ + { + "id": "verstak.browser-inbox.sidebar", + "title": "Browser Inbox", + "icon": "inbox", + "view": "verstak.browser-inbox.view", + "position": 30 + } + ], "workspaceItems": [ { "id": "verstak.browser-inbox.workspace",