router.get('/topic/:id', function(req, res, next) {
    getTopicInfo(req.params.id).then(function (info) {
        res.json(info);
    });
});