### 联合搜索
1.1版本中的新功能
如果您需要在多个地方为用户搜索,则可以使用`LDAPSearchUnion`。 这需要多个LDAPSearch对象并返回结果的联合。 底层搜索的优先级是未指定的。
~~~
import ldap
from django_auth_ldap.config import LDAPSearch, LDAPSearchUnion
AUTH_LDAP_USER_SEARCH = LDAPSearchUnion(
LDAPSearch("ou=users,dc=example,dc=com", ldap.SCOPE_SUBTREE, "(uid=%(user)s)"),
LDAPSearch("ou=otherusers,dc=example,dc=com", ldap.SCOPE_SUBTREE, "(uid=%(user)s)"),
)
~~~