feat(ui-flow): handle set-channel-notification-level IPC

Route channel notification level changes from the desktop UI to the
platform layer.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-05-22 21:20:31 -04:00
co-authored by Cursor
parent e207b0e97b
commit 64aa0a9932
+5
View File
@@ -736,6 +736,11 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
pushState()
return true
}
if (t === 'set-channel-notification-level') {
await platform.setChannelNotificationLevel(msg.channelId, msg.level || 'all')
pushState()
return true
}
if (t === 'archive-thread') {
await platform.archiveThread(msg.threadId, msg.archived !== false)
pushState()