upgraded categories to sorted set, score is the order set from acp, check if category topic exists before posting

This commit is contained in:
Baris Soner Usakli
2014-02-22 18:56:37 -05:00
parent d6d9776cde
commit 6e5a6b8784
9 changed files with 129 additions and 56 deletions

View File

@@ -18,15 +18,7 @@ var winston = require('winston'),
(function(ThreadTools) {
ThreadTools.exists = function(tid, callback) {
db.isSortedSetMember('topics:tid', tid, function(err, ismember) {
if (err) {
callback(false);
}
callback(ismember);
});
db.isSortedSetMember('topics:tid', tid, callback);
}
ThreadTools.privileges = function(tid, uid, callback) {