added a route to get moderators by category id

This commit is contained in:
psychobunny
2014-02-26 15:58:42 -05:00
parent fd8e7327f0
commit 5145ba1aac

View File

@@ -503,6 +503,14 @@ var path = require('path'),
app.get('/500', function(req, res) {
res.json({errorMessage: 'testing'});
});
app.namespace('/categories', function() {
app.get(':cid/moderators', function(req, res) {
categories.getModerators(req.params.cid, function(err, moderators) {
res.json({moderators: moderators});
})
});
});
});
}
}(exports));