huskies: merge 726_story_notify_chat_transports_when_oauth_account_swaps_or_all_accounts_are_exhausted

This commit is contained in:
dave
2026-04-27 18:39:35 +00:00
parent 80661fa622
commit 4b64bc614f
8 changed files with 187 additions and 4 deletions
+3
View File
@@ -193,6 +193,9 @@ pub fn watcher_event_to_response(e: WatcherEvent) -> Option<WsResponse> {
WatcherEvent::RateLimitWarning { .. } => None,
WatcherEvent::StoryBlocked { .. } => None,
WatcherEvent::RateLimitHardBlock { .. } => None,
// OAuth events are forwarded to chat transports only; no WebSocket message for the frontend.
WatcherEvent::OAuthAccountSwapped { .. } => None,
WatcherEvent::OAuthAccountsExhausted { .. } => None,
}
}