gateway: persist and surface node capabilities

This commit is contained in:
Peter Steinberger
2025-12-18 01:36:31 +01:00
parent 568fcbda54
commit 99325040f8
5 changed files with 85 additions and 4 deletions

View File

@@ -164,6 +164,9 @@ final class BridgeConnectionController {
: UserDefaults.standard.bool(forKey: "camera.enabled")
if cameraEnabled { caps.append("camera") }
let voiceWakeEnabled = UserDefaults.standard.bool(forKey: VoiceWakePreferences.enabledKey)
if voiceWakeEnabled { caps.append("voiceWake") }
return caps
}