added private messages, better cache tracking and channel/server creation/deletion and signals

This commit is contained in:
hydrabolt
2015-08-13 21:43:55 +01:00
parent 70c20c63ea
commit 68d93a0d7a
4 changed files with 174 additions and 8 deletions

View File

@@ -20,10 +20,6 @@ exports.User.prototype.mention = function(){
exports.User.prototype.equals = function(otherUser){
if(otherUser.id === this.id){
return true;
} else {
return false;
}
return otherUser.id === this.id;
}