summaryrefslogtreecommitdiffstats
path: root/api/channel.go
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-07-28 18:01:10 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-07-28 18:01:10 +0500
commit5d77ff4bcde3496554551701438c1f42550e58b3 (patch)
treeb5ae06798661167b07286d381199c5de2004f300 /api/channel.go
parent3dd541d3e09b99c60b892c37419dfa30b10700c7 (diff)
parent3a297135372c288b11c75acf6100d97c35c9dae3 (diff)
downloadchat-5d77ff4bcde3496554551701438c1f42550e58b3.tar.gz
chat-5d77ff4bcde3496554551701438c1f42550e58b3.tar.bz2
chat-5d77ff4bcde3496554551701438c1f42550e58b3.zip
Merge branch 'master' of https://github.com/mattermost/platform
Diffstat (limited to 'api/channel.go')
-rw-r--r--api/channel.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/api/channel.go b/api/channel.go
index 4d8dbad09..123fd8a35 100644
--- a/api/channel.go
+++ b/api/channel.go
@@ -710,6 +710,11 @@ func removeChannelMember(c *Context, w http.ResponseWriter, r *http.Request) {
return
}
+ message := model.NewMessage(c.Session.TeamId, "", userId, model.ACTION_USER_REMOVED)
+ message.Add("channel_id",id)
+ message.Add("remover", c.Session.UserId)
+ PublishAndForget(message)
+
c.LogAudit("name=" + channel.Name + " user_id=" + userId)
result := make(map[string]string)