You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi,
How can i get full user list from one of the groups in confluence? I am trying to use a script and do it via scriptrunner console, but i am getting an error in the script. Can you help me with the script?
Script i am using:
That's because Confluence doesn't have a class called ComponentAccessor.
You can't just translate Jira scriptrunner code for Confluence, they are very different at the java API level.
Here is how you can get all the users in a group in confluence:
import com.atlassian.sal.api.component.ComponentLocator
import com.atlassian.user.GroupManager
def groupManager =ComponentLocator.getComponent(GroupManager)
def group = groupManager.getGroup('confluence-users')
groupManager.getMemberNames(group).asList()
Hi @Spruha Shah
If you have access to database, you can run a simple select query & get the data. You may want to read the article.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
we dont have access to the database. I am trying to do this via scriptrunner script.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Spruha Shah
Scriptrunner should also have a database connector which should allow you run sql query, not sure if its available for server but take a look. It would be available for jira admin users next to behaviour somewhere.
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.