[+] Implement function to get all open chats.

Close #14
This commit is contained in:
Pedro Lopez
2019-09-08 03:18:40 -04:00
parent cdfa1760eb
commit cde0034d93
3 changed files with 12 additions and 5 deletions

View File

@@ -37,6 +37,11 @@ exports.LoadCustomSerializers = () => {
const chat = Store.Chat.get(chatId);
return WWebJS.getChatModel(chat);
}
window.WWebJS.getChats = () => {
const chats = Store.Chat.models;
return chats.map(chat => WWebJS.getChatModel(chat));
}
}
exports.MarkAllRead = () => {