most of the work for #1563

This commit is contained in:
Julian Lam
2014-05-22 21:17:48 -04:00
parent 7bdbb966aa
commit 7425b72245
2 changed files with 16 additions and 0 deletions

View File

@@ -16,4 +16,16 @@ groupsController.list = function(req, res) {
});
};
groupsController.details = function(req, res) {
groups.get(req.params.name, {
expand: true
}, function(err, groupObj) {
if (!err) {
res.render('groups/details', groupObj);
} else {
res.redirect('404');
}
});
};
module.exports = groupsController;