How to define an ldap-group members as administrator

Hello ! I'm using the 9.10 version of nuxeo plateform and I want to define an ldap-group members as administrator. I only use ldap management (SQL + LDAP managment).

How can I do it ?

0 votes

2 answers

1222 views

ANSWER



Hello !

I have allready seen this : https://doc.nuxeo.com/nxdoc/how-to-configure-a-multidirectory-for-users-and-groups/

But I don't find the exact syntaxe =\

0 votes




Look at the userManager extension point of UserService

Ex : ubx:adm:89:95:102:tous is the name of an ldap group

 <extension target="org.nuxeo.ecm.platform.usermanager.UserService"
point="userManager">
            <userManager>
                  ...
                    <administratorsGroup>ubx:adm:89:95:102:tous</administratorsGroup>
                  ...
            </userManager>
    </extension>
0 votes