create closed group mark as approved

also, do not filter closed group based on the isApproved field in redux
pull/2210/head
Audric Ackermann 3 years ago
parent 0e329d8c68
commit 74cf88cf81
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -776,7 +776,6 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
messageRequestResponse: { messageRequestResponse: {
isApproved: 1, isApproved: 1,
}, },
unread: 1, // 1 means unread
expireTimer: 0, expireTimer: 0,
}); });
@ -945,7 +944,6 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
if (isOutgoing) { if (isOutgoing) {
message = await this.addSingleOutgoingMessage({ message = await this.addSingleOutgoingMessage({
...commonAttributes, ...commonAttributes,
unread: 0,
sent_at: timestamp, sent_at: timestamp,
}); });
} else { } else {
@ -1017,7 +1015,7 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
public async addSingleOutgoingMessage( public async addSingleOutgoingMessage(
messageAttributes: Omit< messageAttributes: Omit<
MessageAttributesOptionals, MessageAttributesOptionals,
'conversationId' | 'source' | 'type' | 'direction' | 'received_at' 'conversationId' | 'source' | 'type' | 'direction' | 'received_at' | 'unread'
> >
) { ) {
return this.addSingleMessage({ return this.addSingleMessage({
@ -1026,6 +1024,7 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
source: UserUtils.getOurPubKeyStrFromCache(), source: UserUtils.getOurPubKeyStrFromCache(),
type: 'outgoing', type: 'outgoing',
direction: 'outgoing', direction: 'outgoing',
unread: 0, // an outgoing message must be read right?
received_at: messageAttributes.sent_at, // make sure to set an received_at timestamp for an outgoing message, so the order are right. received_at: messageAttributes.sent_at, // make sure to set an received_at timestamp for an outgoing message, so the order are right.
}); });
} }

@ -954,7 +954,7 @@ export async function createClosedGroup(groupName: string, members: Array<string
UserUtils.getOurPubKeyStrFromCache(), UserUtils.getOurPubKeyStrFromCache(),
Date.now() Date.now()
); );
await convo.setIsApproved(true, false);
// be sure to call this before sending the message. // be sure to call this before sending the message.
// the sending pipeline needs to know from GroupUtils when a message is for a medium group // the sending pipeline needs to know from GroupUtils when a message is for a medium group
await ClosedGroup.updateOrCreateClosedGroup(groupDetails); await ClosedGroup.updateOrCreateClosedGroup(groupDetails);

@ -616,7 +616,8 @@ export async function handleDataExtractionNotification(
const envelopeTimestamp = Lodash.toNumber(timestamp); const envelopeTimestamp = Lodash.toNumber(timestamp);
const referencedAttachmentTimestamp = Lodash.toNumber(referencedAttachment); const referencedAttachmentTimestamp = Lodash.toNumber(referencedAttachment);
await convo.addSingleOutgoingMessage({ await convo.addSingleIncomingMessage({
source,
sent_at: envelopeTimestamp, sent_at: envelopeTimestamp,
dataExtractionNotification: { dataExtractionNotification: {
type, type,

@ -174,7 +174,6 @@ export async function addUpdateMessage(
const outgoingMessage = await convo.addSingleOutgoingMessage({ const outgoingMessage = await convo.addSingleOutgoingMessage({
sent_at: sentAt, sent_at: sentAt,
group_update: groupUpdate, group_update: groupUpdate,
unread: 1,
expireTimer: 0, expireTimer: 0,
}); });
return outgoingMessage; return outgoingMessage;

@ -503,7 +503,6 @@ export async function USER_callRecipient(recipient: string) {
sent_at: now, sent_at: now,
expireTimer: 0, expireTimer: 0,
callNotificationType: 'started-call', callNotificationType: 'started-call',
unread: 0,
}); });
// initiating a call is analgous to sending a message request // initiating a call is analgous to sending a message request

@ -352,7 +352,7 @@ export const _getLeftPaneLists = (
directConversations.push(conversation); directConversations.push(conversation);
} }
if (!conversation.isApproved) { if (!conversation.isApproved && conversation.isPrivate) {
// dont increase unread counter, don't push to convo list. // dont increase unread counter, don't push to convo list.
continue; continue;
} }

Loading…
Cancel
Save