rest of view threads window

This commit is contained in:
ouwou
2021-08-11 03:32:09 -04:00
parent e01110c739
commit 7ffded5b13
8 changed files with 223 additions and 8 deletions

View File

@@ -497,3 +497,9 @@ void from_json(const nlohmann::json &j, ThreadMembersUpdateData &m) {
JS_O("added_members", m.AddedMembers);
JS_O("removed_member_ids", m.RemovedMemberIDs);
}
void from_json(const nlohmann::json &j, ArchivedThreadsResponseData &m) {
JS_D("threads", m.Threads);
JS_D("members", m.Members);
JS_D("has_more", m.HasMore);
}