This question is in reference to Atlassian Documentation: Permissions and Restrictions
There exists few groups in our confluence. How can I see all the groups I am in? Moreover, can I see all members of a group?
Community moderators have prevented the ability to post new answers.
The User List macro will show the members of a specified group.
As for getting the membership of an individual you could do that fairly easily with a user macro. The below user macro code would get you what you want.
User Macro - Group List By User
Macro name:
group_list_by_user
Macro Title:
Group List By User
Macro body processing:
No macro body
Template:
## Developed by: Davin Studer ## Date created: 06/20/2016 ## @param User:title=User|type=string|required=true|desc=Enter a user name. <ul> #foreach($group in $userAccessor.getGroupNamesForUserName($paramUser)) <li>$group</li> #end </ul>
You need Site Administrator permissions to see Users and Groups.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.