1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-20 00:25:17 +00:00

Export information about related users

This commit is contained in:
2020-03-26 13:44:57 +01:00
parent aef43df39e
commit dc79c42949
3 changed files with 46 additions and 7 deletions

View File

@ -419,7 +419,9 @@ export class AccountHelper {
conversationsMessages: new Map(),
// Friends
friendsList: await FriendsHelper.GetList(userID)
friendsList: await FriendsHelper.GetList(userID),
// TODO : add groups list
})
// Process conversation messages
@ -428,9 +430,6 @@ export class AccountHelper {
= await ConversationsHelper.GetAllMessages(conv.id);
}
// TODO : continue
return data;
}
}