You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be useful to provide queries to get_object_details at runtime. This provides flexibility when another query needs to be used temporarily without updating the global configuration. For example:
from app import ldap
user_dn_obj_filter = '(&(objectclass=inetOrgPerson)(entryDN=%s))'
ldap.get_object_details(user='cn=John Doe,ou=servauth-users,dc=users,dc=openldap,dc=org', query_filter=user_dn_obj_filter)
The text was updated successfully, but these errors were encountered:
jm66
added a commit
to jm66/flask-simpleldap
that referenced
this issue
Dec 27, 2018
It'd be useful to provide queries to
get_object_details
at runtime. This provides flexibility when another query needs to be used temporarily without updating the global configuration. For example:The text was updated successfully, but these errors were encountered: