fix ldap test

This commit is contained in:
Girish Ramakrishnan
2016-02-09 08:52:16 -08:00
parent 451c410547
commit 49cbea93fb
3 changed files with 10 additions and 4 deletions

View File

@@ -79,7 +79,7 @@ function listUsers(callback) {
userdb.getAll(function (error, result) {
if (error) return callback(new UserError(UserError.INTERNAL_ERROR, error));
return callback(null, result.map(function (obj) { return _.pick(obj, 'id', 'username', 'email', 'displayName'); }));
return callback(null, result.map(function (obj) { return _.pick(obj, 'id', 'username', 'email', 'displayName', 'groupIds'); }));
});
}