Ability to enable/disable the upvote/downvote system, closes #1672

This commit is contained in:
psychobunny
2014-06-27 13:00:47 -04:00
parent b040201764
commit 92c0bd07c9
2 changed files with 3 additions and 3 deletions

View File

@@ -172,7 +172,7 @@ topicsController.get = function(req, res, next) {
}
data.privileges = userPrivileges;
data.votingEnabled = meta.config['votingEnabled'] ? meta.config['votingEnabled'] : true;
data['reputation:disabled'] = meta.config['reputation:disabled'] === '1' ? true : false;
var topic_url = tid + (req.params.slug ? '/' + req.params.slug : '');
var queryString = qs.stringify(req.query);