7c1957c30d
Co-authored-by: Scott Nonnenberg <scott@signal.org>
25 lines
670 B
TypeScript
25 lines
670 B
TypeScript
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { ConversationAttributesType } from '../model-types.d';
|
|
import { SignalService as Proto } from '../protobuf';
|
|
import { isGroupV2 } from './whatTypeOfConversation';
|
|
import { areWeAdmin } from './areWeAdmin';
|
|
|
|
export function canEditGroupInfo(
|
|
conversationAttrs: ConversationAttributesType
|
|
): boolean {
|
|
if (!isGroupV2(conversationAttrs)) {
|
|
return false;
|
|
}
|
|
|
|
if (conversationAttrs.left) {
|
|
return false;
|
|
}
|
|
|
|
return (
|
|
areWeAdmin(conversationAttrs) ||
|
|
conversationAttrs.accessControl?.attributes ===
|
|
Proto.AccessControl.AccessRequired.MEMBER
|
|
);
|
|
}
|