router.put('/groups/:id', function (req, res) {
    var username = req.headers['x-gleaner-user'];
    restUtils.processResponse(groups.modifyGroup(req.params.id, username, req.body, true), res);
});