summaryrefslogtreecommitdiffstats
path: root/api4/user.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-10-03 14:16:33 -0400
committerChris <ccbrown112@gmail.com>2017-10-03 11:16:33 -0700
commit3e144f82e29e566b3cf1615c19b4ddc6dc7e4694 (patch)
tree0a89d8b951bfdc549d0706ef205a96d2e3e86e82 /api4/user.go
parent5e69ce099f521aa49fc267c62235c003eae530ff (diff)
downloadchat-3e144f82e29e566b3cf1615c19b4ddc6dc7e4694.tar.gz
chat-3e144f82e29e566b3cf1615c19b4ddc6dc7e4694.tar.bz2
chat-3e144f82e29e566b3cf1615c19b4ddc6dc7e4694.zip
Only update session activity on specific endpoints (#7549)
Diffstat (limited to 'api4/user.go')
-rw-r--r--api4/user.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/api4/user.go b/api4/user.go
index ea5c0f738..97f79cf6f 100644
--- a/api4/user.go
+++ b/api4/user.go
@@ -121,6 +121,7 @@ func getUser(c *Context, w http.ResponseWriter, r *http.Request) {
} else {
app.SanitizeProfile(user, c.IsSystemAdmin())
}
+ c.App.UpdateLastActivityAtIfNeeded(c.Session)
w.Header().Set(model.HEADER_ETAG_SERVER, etag)
w.Write([]byte(user.ToJson()))
return
@@ -369,6 +370,7 @@ func getUsers(c *Context, w http.ResponseWriter, r *http.Request) {
if len(etag) > 0 {
w.Header().Set(model.HEADER_ETAG_SERVER, etag)
}
+ c.App.UpdateLastActivityAtIfNeeded(c.Session)
w.Write([]byte(model.UserListToJson(profiles)))
}
}