Add items to conversation history when user verifies/unverifies

FREEBIE
This commit is contained in:
Scott Nonnenberg 2017-06-15 12:27:41 -07:00
parent 02973372aa
commit 1cf9289b1a
12 changed files with 168 additions and 4 deletions

View file

@ -103,6 +103,11 @@
});
});
},
getAllGroupsInvolvingId: function(id) {
return conversations.filter(function(conversation) {
return !conversation.isPrivate() && conversation.hasMember(id);
});
},
updateInbox: function() {
return conversations.fetchActive();
}