I've looked through the various posts on this and I can't seem to find a way to do this through the interface. I find it hard to believe that this wouldn't be an option.
I have to add about 50 users to 45 groups. The answer can't be to just type the names in one by one, over and over. I don't see any options to bulk select users. What am I missing?
Thanks!
confluence - bulk add.png
Nevermind, I figured it out on my own. I've scripted the user submission process and used Alfred to perform the action. You can just remove the Alfred elements from the script if you want to use something else. Have a look below and just repeat it as many times as you need it.
on alfred_script(q)
tell application "Google Chrome"
tell application "System Events"
keystroke "USER1"
delay 1
keystroke return
keystroke "USER2"
delay 1
keystroke return
end tell
end tell
end alfred_script
You can use REST API to add/remove user to groups https://marketplace.atlassian.com/plugins/com.itlab.confluence.plugins.restapi-extender/server/overview
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.
Unfortunately, this feature does not exist in Cloud. Please watch the the request and feel free to comment: https://jira.atlassian.com/browse/ID-126
A workaround you may consider would be to create a csv file with the users and the group membership.
Upload the csv to WebDAV in the instance. Then contact support to perform the import for you.
Further info on this:
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.