summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authornickago <ngonella@calpoly.edu>2015-07-09 12:05:04 -0700
committernickago <ngonella@calpoly.edu>2015-07-09 12:05:04 -0700
commit44000b58d911af980a604ca977898760b4a35861 (patch)
treeec73ed225caf51c288e45fddf8c4439d6808ae31 /web
parentb6fb6ea3be059d3c54027267760ccca0f95535ee (diff)
downloadchat-44000b58d911af980a604ca977898760b4a35861.tar.gz
chat-44000b58d911af980a604ca977898760b4a35861.tar.bz2
chat-44000b58d911af980a604ca977898760b4a35861.zip
Server now notifies users they have been added to a new channel
Diffstat (limited to 'web')
-rw-r--r--web/react/components/sidebar.jsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/web/react/components/sidebar.jsx b/web/react/components/sidebar.jsx
index 0e4d38fe0..8b1a25dc9 100644
--- a/web/react/components/sidebar.jsx
+++ b/web/react/components/sidebar.jsx
@@ -263,6 +263,9 @@ var SidebarLoggedIn = React.createClass({
if (ChannelStore.getCurrentId() != msg.channel_id) {
AsyncClient.getChannels(true);
}
+ } else if (msg.action == "user_added") {
+ if (UserStore.getCurrentId() === msg.user_id)
+ AsyncClient.getChannels(true);
}
},
updateTitle: function() {