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

@@ -138,6 +138,10 @@ function userRoutes(app, middleware, controllers) {
function groupRoutes(app, middleware, controllers) {
app.get('/groups', middleware.buildHeader, controllers.groups.list);
app.get('/api/groups', controllers.groups.list);
app.get('/groups/:name', middleware.buildHeader, controllers.groups.details);
app.get('/api/groups/:name', controllers.groups.details);
}