feat(ui-flow): IPC set-threads-panel-parent-filter (v0.8.97)

Wire guild-scope threads panel parent channel filter through the UI
flow bridge so desktop can limit Active Threads to one parent channel.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-05-22 11:22:36 -04:00
co-authored by Cursor
parent daf89afe1a
commit 8f1dc42505
+5
View File
@@ -663,6 +663,11 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
pushState() pushState()
return true return true
} }
if (t === 'set-threads-panel-parent-filter') {
platform.setThreadsPanelParentFilter(msg.parentChannelId || null)
pushState()
return true
}
if (t === 'archive-thread') { if (t === 'archive-thread') {
await platform.archiveThread(msg.threadId, msg.archived !== false) await platform.archiveThread(msg.threadId, msg.archived !== false)
pushState() pushState()