mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 03:26:04 +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
@@ -109,7 +109,7 @@ middleware.routeTouchIcon = function (req, res) {
|
||||
};
|
||||
|
||||
middleware.privateTagListing = function (req, res, next) {
|
||||
if (!req.loggedIn && parseInt(meta.config.privateTagListing, 10) === 1) {
|
||||
if (!req.loggedIn && meta.config.privateTagListing) {
|
||||
controllers.helpers.notAllowed(req, res);
|
||||
} else {
|
||||
next();
|
||||
@@ -140,7 +140,7 @@ function expose(exposedField, method, field, req, res, next) {
|
||||
}
|
||||
|
||||
middleware.privateUploads = function (req, res, next) {
|
||||
if (req.loggedIn || parseInt(meta.config.privateUploads, 10) !== 1) {
|
||||
if (req.loggedIn || !meta.config.privateUploads) {
|
||||
return next();
|
||||
}
|
||||
|
||||
@@ -156,7 +156,7 @@ middleware.privateUploads = function (req, res, next) {
|
||||
};
|
||||
|
||||
middleware.busyCheck = function (req, res, next) {
|
||||
if (global.env === 'production' && (!meta.config.hasOwnProperty('eventLoopCheckEnabled') || parseInt(meta.config.eventLoopCheckEnabled, 10) === 1) && toobusy()) {
|
||||
if (global.env === 'production' && (!meta.config.hasOwnProperty('eventLoopCheckEnabled') || meta.config.eventLoopCheckEnabled) && toobusy()) {
|
||||
analytics.increment('errors:503');
|
||||
res.status(503).type('text/html').sendFile(path.join(__dirname, '../../public/503.html'));
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user