module.exports.teamById = function(req, res, next, id) {
    Team.findOne({ _id: id })
        .exec()
        .then(function(team) {
            if (null == team) {