mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-10 07:55:46 +01:00
Parse int (#6853)
* Store config fields as JSON in the db Fewer parseInts * Remove unnecessary parseInts * remove some dupe code add tests * remove console.log * remove more parseInts * WIP: read meta.configs defaults from defaults.json remove more parseInts * more work * add log for failing test * update admin pwd * fix tests, dont require posts/cache before configs are initialized * handle saves * Test boolean conditions * remove more parseInts * Fix boolean values * remove lots more parseInts * removed json parsing * renamed var to number * categories dont have timestamp
This commit is contained in:
committed by
GitHub
parent
60c58870af
commit
9c022afae1
@@ -78,7 +78,7 @@ module.exports = function (middleware) {
|
||||
}
|
||||
|
||||
middleware.checkGlobalPrivacySettings = function (req, res, next) {
|
||||
if (!req.loggedIn && !!parseInt(meta.config.privateUserInfo, 10)) {
|
||||
if (!req.loggedIn && meta.config.privateUserInfo) {
|
||||
return middleware.authenticate(req, res, next);
|
||||
}
|
||||
|
||||
@@ -187,8 +187,8 @@ module.exports = function (middleware) {
|
||||
}
|
||||
|
||||
var loginTime = req.session.meta ? req.session.meta.datetime : 0;
|
||||
var adminReloginDuration = (meta.config.adminReloginDuration || 60) * 60000;
|
||||
var disabled = parseInt(meta.config.adminReloginDuration, 10) === 0;
|
||||
var adminReloginDuration = meta.config.adminReloginDuration * 60000;
|
||||
var disabled = meta.config.adminReloginDuration === 0;
|
||||
if (disabled || (loginTime && parseInt(loginTime, 10) > Date.now() - adminReloginDuration)) {
|
||||
var timeLeft = parseInt(loginTime, 10) - (Date.now() - adminReloginDuration);
|
||||
if (req.session.meta && timeLeft < Math.min(300000, adminReloginDuration)) {
|
||||
|
||||
Reference in New Issue
Block a user