Only update session activity on specific endpoints (#7549)

Этот коммит содержится в:
Joram Wilander
2017-10-03 14:16:33 -04:00
коммит произвёл Chris
родитель 5e69ce099f
Коммит 3e144f82e2
4 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@@ -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)))
}
}