feat: allow multiple cids for getActiveUsers

v1.18.x
Barış Soner Uşaklı 6 years ago
parent b6440eed7a
commit 81306fff3c

@ -7,10 +7,13 @@ var posts = require('../posts');
var db = require('../database');
module.exports = function (Categories) {
Categories.getActiveUsers = function (cid, callback) {
Categories.getActiveUsers = function (cids, callback) {
if (!Array.isArray(cids)) {
cids = [cids];
}
async.waterfall([
function (next) {
db.getSortedSetRevRange('cid:' + cid + ':pids', 0, 24, next);
db.getSortedSetRevRange(cids.map(cid => 'cid:' + cid + ':pids'), 0, 24, next);
},
function (pids, next) {
posts.getPostsFields(pids, ['uid'], next);

Loading…
Cancel
Save