exports.getTopicLikesByUserId = function (userId, opt, callback) {
    var defaultOpt = {sort: '-create_at'};
    opt = _.assign(defaultOpt, opt);
    TopicLike.find({user: userId}, '', opt, callback);
};