Skip to content

Commit

Permalink
feat: add memberOf query filter in docs (#627)
Browse files Browse the repository at this point in the history
* feat: add memberOf query filter

* Update ldapserver.md

* fix ci lint
  • Loading branch information
m-yosefpor authored Jul 20, 2024
1 parent 4fb8671 commit 8fe29cd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/ldap/ldapserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ Once the bind operation completes successfully, you can perform the search opera
- To search for a certain user, such as `Alice` under the `built-in` organization, you should use a `DN` like this: `ou=built-in,dc=example,dc=com`, and add `cn=Alice` in the Filter field.
- To search for all users under a certain organization, such as all users in `built-in`, you should use a `DN` like this: `ou=built-in,dc=example,dc=com`, and add `cn=*` in the Filter field.
- To search for all users in all organizations (assuming the user has sufficient permissions), you should use a `DN` like this: `ou=*,dc=example,dc=com`, and add `cn=*` in the Filter field.
- To search for all users in a specific group, you should use a filter query like this: `(memberOf=organization_name/group_name)` in the Filter field.

0 comments on commit 8fe29cd

Please sign in to comment.