summaryrefslogtreecommitdiffstats
path: root/api/web_hub.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-08-27 11:22:19 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-27 11:22:19 -0400
commite1c09605dce8441e1523abc4c830062fdd457337 (patch)
treefab3563d01c1194e8dd3d873aeb37d7dd55f3b81 /api/web_hub.go
parentea4beb7c4545e3ad6c7214a6a15ec66cc784f5ea (diff)
parent041d89b85a22b0a498a4176d0d26fd5dc84c33f9 (diff)
downloadchat-e1c09605dce8441e1523abc4c830062fdd457337.tar.gz
chat-e1c09605dce8441e1523abc4c830062fdd457337.tar.bz2
chat-e1c09605dce8441e1523abc4c830062fdd457337.zip
Merge pull request #469 from mattermost/mm-1699
MM-1699 Refactored post handling/updating on both the client and server
Diffstat (limited to 'api/web_hub.go')
-rw-r--r--api/web_hub.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/api/web_hub.go b/api/web_hub.go
index c7be19cac..44d405283 100644
--- a/api/web_hub.go
+++ b/api/web_hub.go
@@ -30,6 +30,14 @@ func PublishAndForget(message *model.Message) {
}()
}
+func UpdateChannelAccessCacheAndForget(teamId, userId, channelId string) {
+ go func() {
+ if nh, ok := hub.teamHubs[teamId]; ok {
+ nh.UpdateChannelAccessCache(userId, channelId)
+ }
+ }()
+}
+
func (h *Hub) Register(webConn *WebConn) {
h.register <- webConn
}