signal-desktop/ts/util/isGroupCallReactionsEnabled.ts
2023-11-16 11:55:35 -08:00

8 lines
258 B
TypeScript

// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import * as RemoteConfig from '../RemoteConfig';
export function isGroupCallReactionsEnabled(): boolean {
return Boolean(RemoteConfig.isEnabled('desktop.internalUser'));
}