diff --git a/src/routes/groups.js b/src/routes/groups.js index 68f3692f0..493c1f3ec 100644 --- a/src/routes/groups.js +++ b/src/routes/groups.js @@ -71,7 +71,7 @@ function updateMembers(req, res, next) { } function list(req, res, next) { - groups.getAll(function (error, result) { + groups.getAllWithMembers(function (error, result) { if (error) return next(BoxError.toHttpError(error)); next(new HttpSuccess(200, { groups: result }));