fetching conversations and managing in the conversation provider

This commit is contained in:
talksik
2022-06-11 11:06:28 -05:00
parent 701ae1fdde
commit fa38aa8af8
6 changed files with 83 additions and 8 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import Conversation from '@nirvana/core/models/conversation.model';
import User from '@nirvana/core/models/user.model';
export type ConversationMap = {
[conversationId: string]: Conversation;
[conversationId: string]: Conversation & { tunedInUsers: string[]; connectedUserIds: string[] };
};
export type UserMap = {