adding recursive group filter for cases where the LDAP group property and recursive property are the same.
This commit is contained in:
parent
3937180957
commit
45b5d6ea5b
2 changed files with 14 additions and 0 deletions
|
|
@ -407,6 +407,12 @@ sub www_editGroup {
|
|||
-hoverHelp=>$i18n->get("LDAPLink_ldapRecursiveProperty","AuthLDAP"),
|
||||
-value=>$g->ldapRecursiveProperty
|
||||
);
|
||||
$f->text(
|
||||
-name=>"ldapRecursiveFilter",
|
||||
-label=>$i18n->get("LDAPLink_ldapRecursiveFilter","AuthLDAP"),
|
||||
-hoverHelp=>$i18n->get("LDAPLink_ldapRecursiveFilterDescription","AuthLDAP"),
|
||||
-value=>$g->ldapRecursiveFilter
|
||||
);
|
||||
$f->interval(
|
||||
-name=>"groupCacheTimeout",
|
||||
-label=>$i18n->get(1004),
|
||||
|
|
@ -442,6 +448,7 @@ sub www_editGroupSave {
|
|||
$g->ldapGroup($session->form->text("ldapGroup"));
|
||||
$g->ldapGroupProperty($session->form->text("ldapGroupProperty"));
|
||||
$g->ldapRecursiveProperty($session->form->text("ldapRecursiveProperty"));
|
||||
$g->ldapRecursiveFilter($session->form->text("ldapRecursiveFilter"));
|
||||
return www_listGroups($session);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue