Skip to content

Commit

Permalink
add memberUID attributes to groups
Browse files Browse the repository at this point in the history
  • Loading branch information
hubermat committed Dec 23, 2022
1 parent e64476a commit 6c9db0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ctldap.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,8 @@ function requestGroups (req, res, next) {
objectclass: ["group", "CTGroup" + groupType.charAt(0).toUpperCase() + groupType.slice(1)],
uniquemember: (results.groupMembers[v.id] || []).map(function (cn) {
return site.compatTransform(site.fnUserDn({ cn: cn }));
})
}),
memberUID: results.groupMembers[v.id] || []
}
};
});
Expand Down

0 comments on commit 6c9db0f

Please sign in to comment.