mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { isEnabled } from '../RemoteConfig';
|
|
|
|
export function canEditMessages(): boolean {
|
|
return isEnabled('desktop.editMessageSend');
|
|
}
|