mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-23 03:39:44 +00:00
14 lines
337 B
TypeScript
14 lines
337 B
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { everDone as wasRegistrationEverDone } from './registration.preload.js';
|
|
|
|
export function isLinkAndSyncEnabled(): boolean {
|
|
// Cannot overwrite existing message history
|
|
if (wasRegistrationEverDone()) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|