From 8c80cdde38cceb3424b2b1f43eadf7a1aab0c6df Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 27 Sep 2017 11:52:34 -0500 Subject: remove remaining Global() calls (outside of tests) (#7521) --- api/reaction.go | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'api/reaction.go') diff --git a/api/reaction.go b/api/reaction.go index 28cc9ade2..aada8cdd4 100644 --- a/api/reaction.go +++ b/api/reaction.go @@ -8,7 +8,6 @@ import ( l4g "github.com/alecthomas/log4go" "github.com/gorilla/mux" - "github.com/mattermost/mattermost-server/app" "github.com/mattermost/mattermost-server/model" "github.com/mattermost/mattermost-server/utils" ) @@ -112,23 +111,6 @@ func deleteReaction(c *Context, w http.ResponseWriter, r *http.Request) { ReturnStatusOK(w) } -func sendReactionEvent(event string, channelId string, reaction *model.Reaction, post *model.Post) { - // send out that a reaction has been added/removed - - message := model.NewWebSocketEvent(event, "", channelId, "", nil) - message.Add("reaction", reaction.ToJson()) - app.Publish(message) - - // THe post is always modified since the UpdateAt always changes - app.Global().InvalidateCacheForChannelPosts(post.ChannelId) - post.HasReactions = true - post.UpdateAt = model.GetMillis() - umessage := model.NewWebSocketEvent(model.WEBSOCKET_EVENT_POST_EDITED, "", channelId, "", nil) - umessage.Add("post", post.ToJson()) - app.Publish(umessage) - -} - func listReactions(c *Context, w http.ResponseWriter, r *http.Request) { params := mux.Vars(r) -- cgit v1.2.3-1-g7c22