Hi AlI have requirement to hide insight view in aem asset console. i have tried so we cant set rep:policy node on the designated node or i need to write custom code. is there ny other ootb way to achieve it?
any help!!!
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @ajinkayk6258253,
@raghavc gave you the right answer so you can approve it, but I thought I would a bit more information for context.
Here is the ACE (Access Control Entry) that you need to apply:
If you are unfamiliar with ACEs, you can find the user interface by going to Tools > Security > Permissions.
And here is the before and after:
BEFORE
AFTER
One more thing: your question is about hiding the insights tab from a particular user but in general its is strongly recommended to use a user to identify a particular person or service, but a group to attach ACEs. You would then add users to groups based on which rights they need and what their role is within AEM. This is much cleaner, much more semantic and makes your configurations re-usable in the future
You can remove read access to the below path, this should hide the insights tab for the user.
/libs/dam/content/schemaeditors/forms/insights/items
As the path is marked internal, adding a new rendercondition might not be an option.
Hi @ajinkayk6258253,
@raghavc gave you the right answer so you can approve it, but I thought I would a bit more information for context.
Here is the ACE (Access Control Entry) that you need to apply:
If you are unfamiliar with ACEs, you can find the user interface by going to Tools > Security > Permissions.
And here is the before and after:
BEFORE
AFTER
One more thing: your question is about hiding the insights tab from a particular user but in general its is strongly recommended to use a user to identify a particular person or service, but a group to attach ACEs. You would then add users to groups based on which rights they need and what their role is within AEM. This is much cleaner, much more semantic and makes your configurations re-usable in the future
Views
Replies
Total Likes
Views
Replies
Total Likes
You should not change anything inside /libs/
So /libs/dam/content/schemaeditors/forms/insights/items is not an option.
You should override in apps and handle through rendercondition with group renderer https://github.com/arunpatidar02/aem63app-repo/blob/master/jsp/grouprenderecondition.jsp
Views
Replies
Total Likes