Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-02-06 01:00:50 +0300
committerStan Hu <stanhu@gmail.com>2019-02-06 01:00:50 +0300
commit5108ed987092a4ed315bf587fdc2125e08ec486f (patch)
tree7073c3ef16ec54983d3bca41cc7211be17da42da
parent24226b9fe25ad98b279eae6b3ccd37749ba4d60d (diff)
Remove comment about needing cookie support
Cookies are no longer needed for this feature to work.
-rw-r--r--app/controllers/concerns/record_user_last_activity.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/controllers/concerns/record_user_last_activity.rb b/app/controllers/concerns/record_user_last_activity.rb
index 884c17b3f68..372c803278d 100644
--- a/app/controllers/concerns/record_user_last_activity.rb
+++ b/app/controllers/concerns/record_user_last_activity.rb
@@ -3,8 +3,7 @@
# == RecordUserLastActivity
#
# Controller concern that updates the `last_activity_on` field of `users`
-# for any authenticated GET request. The DB update will only happen once per day
-# if the client supports cookies.
+# for any authenticated GET request. The DB update will only happen once per day.
#
# In order to determine if you should include this concern or not, please check the
# description and discussion on this issue: https://gitlab.com/gitlab-org/gitlab-ce/issues/54947