Hello,
I would like to know if there is a plugin or an addon that allow to have a detailed view of all permissions configured into Confluence? Or maybe if there is another solution.
This is an important feature in case of account review for example.
Thanks a lot.
Udaya.
You can achieve that with a custom user macro. Something like:
## Macro title: My Macro ## Macro has a body: Y or N ## Body processing: Selected body processing option ## Output: Selected output option ## ## Developed by: My Name ## Date created: dd/mm/yyyy ## Installed by: My Name ## This is an example macro Space Permissions: #foreach($space in $spaceManager.getAllSpaces()) #foreach ($permission in $space.getPermissions()) #if ($permission.isGroupPermission()) Group $permission.getGroup() has permission $permission.getType() in space $space.name <br/> #end #if ($permission.isUserPermission()) User $permission.getUserName() has permission $permission.getType() in space $space.name <br/> #end #end #end
That is for spaces only and untested. You could do the same for pages, but it gets quite long if you have many.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.