summaryrefslogtreecommitdiffstats
path: root/api/channel.go
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 /api/channel.go
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 'api/channel.go')
-rw-r--r--api/channel.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/api/channel.go b/api/channel.go
index 8264b3e74..88db27def 100644
--- a/api/channel.go
+++ b/api/channel.go
@@ -655,6 +655,10 @@ func addChannelMember(c *Context, w http.ResponseWriter, r *http.Request) {
c.LogAudit("name=" + channel.Name + " user_id=" + userId)
+ message := model.NewMessage(c.Session.TeamId, "", userId, model.ACTION_USER_ADDED)
+
+ store.PublishAndForget(message)
+
<-Srv.Store.Channel().UpdateLastViewedAt(id, oUser.Id)
w.Write([]byte(cm.ToJson()))
}