mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-17 03:01:08 +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
@@ -3,7 +3,6 @@
|
||||
var async = require('async');
|
||||
|
||||
var privileges = require('../privileges');
|
||||
var cache = require('./cache');
|
||||
|
||||
module.exports = function (Posts) {
|
||||
Posts.tools = {};
|
||||
@@ -42,7 +41,7 @@ module.exports = function (Posts) {
|
||||
}
|
||||
|
||||
if (isDelete) {
|
||||
cache.del(pid);
|
||||
require('./cache').del(pid);
|
||||
Posts.delete(pid, uid, next);
|
||||
} else {
|
||||
Posts.restore(pid, uid, function (err, postData) {
|
||||
@@ -65,7 +64,7 @@ module.exports = function (Posts) {
|
||||
if (!canPurge) {
|
||||
return next(new Error('[[error:no-privileges]]'));
|
||||
}
|
||||
cache.del(pid);
|
||||
require('./cache').del(pid);
|
||||
Posts.purge(pid, uid, next);
|
||||
},
|
||||
], callback);
|
||||
|
||||
Reference in New Issue
Block a user