From 3e144f82e29e566b3cf1615c19b4ddc6dc7e4694 Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Tue, 3 Oct 2017 14:16:33 -0400 Subject: Only update session activity on specific endpoints (#7549) --- api4/user.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'api4/user.go') 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))) } } -- cgit v1.2.3-1-g7c22