12 lines
334 B
TypeScript
12 lines
334 B
TypeScript
|
// Copyright 2021 Signal Messenger, LLC
|
||
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
import * as RemoteConfig from '../RemoteConfig';
|
||
|
|
||
|
export function isGroupCallOutboundRingEnabled(): boolean {
|
||
|
return Boolean(
|
||
|
RemoteConfig.isEnabled('desktop.internalUser') ||
|
||
|
RemoteConfig.isEnabled('desktop.groupCallOutboundRing')
|
||
|
);
|
||
|
}
|