mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 11:35:55 +01:00
cleanup
This commit is contained in:
@@ -109,7 +109,7 @@
|
||||
}
|
||||
|
||||
callback(null, data[field]);
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
module.getObjectFields = function(key, fields, callback) {
|
||||
@@ -179,7 +179,6 @@
|
||||
var data = {};
|
||||
data[field] = value;
|
||||
db.collection('objects').update({_key:key}, {$inc : data}, function(err, result) {
|
||||
console.log('incrObjectFieldBy', err, result);
|
||||
module.getObjectField(key, field, function(err, value) {
|
||||
callback(err, value);
|
||||
});
|
||||
|
||||
@@ -136,6 +136,10 @@
|
||||
redisClient.get(key, callback);
|
||||
}
|
||||
|
||||
module.keys = function(key, callback) {
|
||||
redisClient.keys(keym callback);
|
||||
}
|
||||
|
||||
//hashes
|
||||
|
||||
module.setObject = function(key, data, callback) {
|
||||
|
||||
@@ -153,13 +153,19 @@ var fs = require('fs'),
|
||||
}));
|
||||
|
||||
next();
|
||||
} else next();
|
||||
} else {
|
||||
next();
|
||||
}
|
||||
}
|
||||
], function(err) {
|
||||
if (!err) {
|
||||
if (global.env === 'development') winston.info('[plugins] Loaded plugin: ' + pluginData.id);
|
||||
if (global.env === 'development') {
|
||||
winston.info('[plugins] Loaded plugin: ' + pluginData.id);
|
||||
}
|
||||
callback();
|
||||
} else callback(new Error('Could not load plugin system'))
|
||||
} else {
|
||||
callback(new Error('Could not load plugin system'));
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
||||
@@ -212,7 +218,9 @@ var fs = require('fs'),
|
||||
next(null, value);
|
||||
}
|
||||
} else {
|
||||
if (global.env === 'development') winston.info('[plugins] Expected method \'' + hookObj.method + '\' in plugin \'' + hookObj.id + '\' not found, skipping.');
|
||||
if (global.env === 'development') {
|
||||
winston.info('[plugins] Expected method \'' + hookObj.method + '\' in plugin \'' + hookObj.id + '\' not found, skipping.');
|
||||
}
|
||||
next(null, value);
|
||||
}
|
||||
}, function(err, value) {
|
||||
@@ -222,7 +230,7 @@ var fs = require('fs'),
|
||||
}
|
||||
}
|
||||
|
||||
callback.apply(plugins, arguments);
|
||||
callback.apply(Plugins, arguments);
|
||||
});
|
||||
break;
|
||||
case 'action':
|
||||
|
||||
Reference in New Issue
Block a user