You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
539 B
JavaScript
24 lines
539 B
JavaScript
|
|
|
|
'use strict';
|
|
|
|
var async = require('async');
|
|
var db = require('../database');
|
|
var posts = require('../posts');
|
|
|
|
module.exports = function (Topics) {
|
|
|
|
Topics.isOwner = function (tid, uid, callback) {
|
|
uid = parseInt(uid, 10);
|
|
if (!uid) {
|
|
return callback(null, false);
|
|
}
|
|
Topics.getTopicField(tid, 'uid', function (err, author) {
|
|
callback(err, parseInt(author, 10) === uid);
|
|
});
|
|
};
|
|
|
|
Topics.getUids = function (tid, callback) {
|
|
db.getSortedSetRevRangeByScore('tid:' + tid + ':posters', 0, -1, '+inf', 1, callback);
|
|
};
|
|
}; |