1f2cde6d04
Co-authored-by: Fedor Indutnyy <indutny@signal.org>
8 lines
223 B
TypeScript
8 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');
|
|
}
|