From 2e579ee0f97286adaccd3a7b8ce05f98f044e73e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Mon, 29 Oct 2018 12:18:11 -0400 Subject: [PATCH] closes #6883 --- install/data/defaults.json | 3 ++- public/language/en-GB/admin/settings/user.json | 2 ++ src/user/index.js | 2 +- src/views/admin/settings/user.tpl | 3 +++ 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/install/data/defaults.json b/install/data/defaults.json index d08ad93763..161f4efe4e 100644 --- a/install/data/defaults.json +++ b/install/data/defaults.json @@ -111,5 +111,6 @@ "hsts-preload": 0, "hsts-enabled": 0, "eventLoopLagThreshold": 100, - "eventLoopInterval": 500 + "eventLoopInterval": 500, + "onlineCutoff": 30 } \ No newline at end of file diff --git a/public/language/en-GB/admin/settings/user.json b/public/language/en-GB/admin/settings/user.json index 501441aa64..a6a6f26af4 100644 --- a/public/language/en-GB/admin/settings/user.json +++ b/public/language/en-GB/admin/settings/user.json @@ -27,6 +27,8 @@ "lockout-duration": "Account Lockout Duration (minutes)", "login-days": "Days to remember user login sessions", "password-expiry-days": "Force password reset after a set number of days", + "online-cutoff": "Minutes after user is considered inactive", + "online-cutoff-help": "If user performs no actions for this duration, they are considered inactive and they do not receive realtime updates.", "registration": "User Registration", "registration-type": "Registration Type", "registration-type.normal": "Normal", diff --git a/src/user/index.js b/src/user/index.js index d3fc8cc85a..9992c0b9d1 100644 --- a/src/user/index.js +++ b/src/user/index.js @@ -43,7 +43,7 @@ User.getUidsFromSet = function (set, start, stop, callback) { if (set === 'users:online') { var count = parseInt(stop, 10) === -1 ? stop : stop - start + 1; var now = Date.now(); - db.getSortedSetRevRangeByScore(set, start, count, '+inf', now - 300000, callback); + db.getSortedSetRevRangeByScore(set, start, count, '+inf', now - (meta.config.onlineCutoff * 60000), callback); } else { db.getSortedSetRevRange(set, start, stop, callback); } diff --git a/src/views/admin/settings/user.tpl b/src/views/admin/settings/user.tpl index 882f567cfb..2118cf4a00 100644 --- a/src/views/admin/settings/user.tpl +++ b/src/views/admin/settings/user.tpl @@ -144,6 +144,9 @@

Note that only one of these values will be used. If there is no seconds value we fall back to days. If there is no days value we default to 14 days.

+ + +

[[admin/settings/user:online-cutoff-help]]