signal-desktop/ts/util/isBackupEnabled.ts
automated-signal 2cdbb36305 Rename backupServerPublicParams
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2024-04-24 13:43:05 +02:00

8 lines
256 B
TypeScript

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