mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-03 14:51:18 +01:00
9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as RemoteConfig from '../RemoteConfig';
|
|
|
|
export function areNicknamesEnabled(): boolean {
|
|
return RemoteConfig.getValue('desktop.nicknames') === 'TRUE';
|
|
}
|