02-19-2014 12:08 PM
Hi, there is "Users & Groups" tab into "HOME" tab. I need to block this "Users & Groups" tab or dont let to some users o groups look for other user o see the users list. Where i can configure this? Thanks
02-26-2014 06:30 AM
Hi,
You can disable this tab by using the following contribution:
<require>org.nuxeo.ecm.user.center.actions</require>
<extension target="org.nuxeo.ecm.platform.actions.ActionService"
point="actions">
<action id="UsersGroupsHome" enabled="false" />
</extension>
If you need more control over this tab, you can also override the default filter contribution controlling it:
<require>org.nuxeo.connect.client.actions</require>
<extension target="org.nuxeo.ecm.platform.actions.ActionService"
point="filters">
<filter id="usersGroupsManagementAccess">
<rule grant="true">
<condition>#{currentUser.administrator}</condition>
<condition>#{currentUser.isMemberOf('powerusers')}</condition>
</rule>
</filter>
</extension>
02-26-2014 06:30 AM
Hi,
You can disable this tab by using the following contribution:
<require>org.nuxeo.ecm.user.center.actions</require>
<extension target="org.nuxeo.ecm.platform.actions.ActionService"
point="actions">
<action id="UsersGroupsHome" enabled="false" />
</extension>
If you need more control over this tab, you can also override the default filter contribution controlling it:
<require>org.nuxeo.connect.client.actions</require>
<extension target="org.nuxeo.ecm.platform.actions.ActionService"
point="filters">
<filter id="usersGroupsManagementAccess">
<rule grant="true">
<condition>#{currentUser.administrator}</condition>
<condition>#{currentUser.isMemberOf('powerusers')}</condition>
</rule>
</filter>
</extension>
02-26-2014 09:11 AM
Thanks! it should work, one more question, how can i hide it just for one or more groups?
02-26-2014 06:37 PM
Hi,
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.