storkit: merge 425_story_chat_notification_when_a_story_blocks_with_reason

This commit is contained in:
dave
2026-03-28 09:36:15 +00:00
parent 740f1b5e6e
commit 98b5475160
5 changed files with 184 additions and 15 deletions
+3 -2
View File
@@ -158,10 +158,11 @@ impl From<WatcherEvent> for Option<WsResponse> {
}),
WatcherEvent::ConfigChanged => Some(WsResponse::AgentConfigChanged),
WatcherEvent::AgentStateChanged => Some(WsResponse::AgentStateChanged),
// MergeFailure and RateLimitWarning are handled by the chat notification
// listener only; no WebSocket message is needed for the frontend.
// MergeFailure, RateLimitWarning, and StoryBlocked are handled by the
// chat notification listener only; no WebSocket message is needed for the frontend.
WatcherEvent::MergeFailure { .. } => None,
WatcherEvent::RateLimitWarning { .. } => None,
WatcherEvent::StoryBlocked { .. } => None,
}
}
}