Files
sky_phone/frontend/src/utils/windowMessages.ts
T
Leon.Schmidt 42ac955052 ADD - expand phone application platform
Add the Companies app, resilient call handling, custom app registry, vendor compatibility, storage policies, frontend bridge, tests, documentation, config, locale, and SQL migrations.
2026-08-11 00:22:39 +02:00

7 lines
168 B
TypeScript

export function isTrustedRootMessageSource(
source: MessageEventSource | null,
rootWindow: Window,
): boolean {
return source === null || source === rootWindow
}