module.exports.tagById = function(req, res, next, id) {
    Tag.findOne({ _id: id })
        .exec()
        .then(function(tag) {
            if (null == tag) {