Signal-Desktop/ts/util/callingPermissions.ts

14 lines
414 B
TypeScript

// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
export async function requestCameraPermissions(): Promise<boolean> {
if (!(await window.IPC.getMediaCameraPermissions())) {
await window.IPC.showPermissionsPopup(true, true);
// Check the setting again (from the source of truth).
return (await window.IPC.getMediaCameraPermissions()) ?? false;
}
return true;
}