mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-02 08:13:37 +01:00
12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
// Copyright 2025 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { isFeaturedEnabledNoRedux } from './isFeatureEnabled.dom.js';
|
|
|
|
export function isLocalBackupsEnabled(): boolean {
|
|
return isFeaturedEnabledNoRedux({
|
|
betaKey: 'desktop.localBackups.beta',
|
|
prodKey: 'desktop.localBackups.prod',
|
|
});
|
|
}
|