feat(#5): авто-пауза напоминаний во время ВКС (Zoom/Teams/Discord/Webex)
This commit is contained in:
@@ -291,6 +291,11 @@ export function validateSettingsPatch(raw: unknown): Partial<Settings> | null {
|
||||
if (v === undefined) return null
|
||||
out.voicePromptsEnabled = v
|
||||
}
|
||||
if ('meetingAutoPause' in raw) {
|
||||
const v = bool(raw.meetingAutoPause)
|
||||
if (v === undefined) return null
|
||||
out.meetingAutoPause = v
|
||||
}
|
||||
if ('notificationMode' in raw) {
|
||||
const v = oneOf(raw.notificationMode, VALID_NOTIFY)
|
||||
if (v === undefined) return null
|
||||
|
||||
Reference in New Issue
Block a user