cancel
Showing results for 
Search instead for 
Did you mean: 

prevent users from accessing 'Manage Space Users'

stuartmcmahon
Champ in-the-making
Champ in-the-making
Hi,
How  do I set the permissions on spaces so that only the admin user
can "Manage Space Users".

thanks,
Stuart.
1 REPLY 1

andy
Champ on-the-rise
Champ on-the-rise
Hi

By default the owner has all rights on a space.

If you do not what them to be able to set permissions you need to set the owner permissions as you require in a copy of config\alfresco\model\permissionDefinitions.xml in the extensions directory.


<!– For now, owners can always see, find and manipulate their stuff                  –>
   <globalPermission permission="FullControl" authority="ROLE_OWNER"/>

You will need another bean entry in the extensions directory to point to this file location.


    <!– ===================== –>
    <!– Permissions Model DAO –>
    <!– ===================== –>

    <bean id='permissionsModelDAO' class="org.alfresco.repo.security.permissions.impl.model.PermissionModel">
        <property name="model">
            <value>alfresco/model/permissionDefinitions.xml</value>
        </property>
        <property name="nodeService">
            <ref bean="nodeService" />
        </property>
        <property name="dictionaryService">
            <ref bean="dictionaryService" />
        </property>
    </bean>

Regards

Andy