mirror of
https://github.com/suitenumerique/meet.git
synced 2026-07-28 04:39:16 +00:00
2443fa63a5
Introduce pop-in alerting participants of automatic 2-minute idle disconnect to enable LiveKit node configuration updates during maintenance windows, preventing forgotten tabs from blocking overnight production updates following patterns from proprietary videoconference solutions.
10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
import { proxy } from 'valtio'
|
|
|
|
type State = {
|
|
isIdleDisconnectModalOpen: boolean
|
|
}
|
|
|
|
export const connectionObserverStore = proxy<State>({
|
|
isIdleDisconnectModalOpen: false,
|
|
})
|