8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as RemoteConfig from '../RemoteConfig';
|
|
|
|
export function isAdhocCallingEnabled(): boolean {
|
|
return RemoteConfig.isEnabled('desktop.internalUser');
|
|
}
|