1) Just a simple list of anyone having Space Admin permissions
2) Listing of all spaces and space admins together
Thanks!
in velocity or in pure java?
in velocity you could retrieve all users with this script : https://answers.atlassian.com/questions/78159/get-all-users-in-custom-macro-or-plugion?page=1#78183
then you could loop over all users (in velocity: http://velocity.apache.org/engine/releases/velocity-1.5/user-guide.html#loops )
with the snipplet:
#foreach ($user in $users) #if($permissionHelper.canAdminister($user, $space)) has access : $user.getFullName() <br/> #end #end
you could output the users.
i hope this is a good starting point for you
oli
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.