Blur avatars of unapproved conversations
This commit is contained in:
parent
bbd7fd3854
commit
05703c2719
28 changed files with 474 additions and 124 deletions
9
ts/model-types.d.ts
vendored
9
ts/model-types.d.ts
vendored
|
@ -283,6 +283,15 @@ export type ConversationAttributesType = {
|
|||
// Used only when user is waiting for approval to join via link
|
||||
isTemporary?: boolean;
|
||||
temporaryMemberCount?: number;
|
||||
|
||||
// Avatars are blurred for some unapproved conversations, but users can manually unblur
|
||||
// them. If the avatar was unblurred and then changed, we don't update this value so
|
||||
// the new avatar gets blurred.
|
||||
//
|
||||
// This value is useless once the message request has been approved. We don't clean it
|
||||
// up but could. We don't persist it but could (though we'd probably want to clean it
|
||||
// up in that case).
|
||||
unblurredAvatarPath?: string;
|
||||
};
|
||||
|
||||
export type GroupV2MemberType = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue