Skip to content

Releases: vesse/node-ldapauth-fork

Update ldapjs / Node 6 support

11 Nov 08:06
Compare
Choose a tag to compare

Update ldapjs to 1.0.1 and allow patch updates without re-releasing.

groupSearchFilter can be a function

10 Aug 06:02
Compare
Choose a tag to compare

groupSearchFilter can be a function that receives the LDAP user object and returns the actual search filter.

var  opts = {
  ...
  groupSearchFilter : function(user) {
    return "(member={{uid}})".replace(user.dn);
  };
};