I've enabled Nested groups in jira, but now wish to nest AD groups within jira groups with groovy (via the Script Runner console).
groupService.addGroupsToGroups()
does not work via the Script Runner console, no error message is provided
You can do this using the following script, but you'll need to replace the group names:
import com.atlassian.jira.bc.JiraServiceContextImplimport com.atlassian.jira.bc.group.GroupServiceimport com.atlassian.jira.component.ComponentAccessordef authenticationContext = ComponentAccessor.getJiraAuthenticationContext()def groupService = ComponentAccessor.getComponent(GroupService)def jiraServiceContext = new JiraServiceContextImpl(authenticationContext.getLoggedInUser())// groups that can have groups added to themdef nestedGroups = ["nested1", "nested2"]// the groups to add to the nested groups above as childrendef childGroups = ["group1", "group2"]def groupValidationResult = groupService.validateAddGroupsToGroup(jiraServiceContext, nestedGroups, childGroups)if (groupValidationResult.isSuccess()) { groupService.addGroupsToGroups(jiraServiceContext, nestedGroups, childGroups)} else { log.warn "invalid children groups: $groupValidationResult.invalidChildren"}
Notably this uses GroupService to add nested groups. I'd recommend using GroupService, as it performs some validation that GroupManager may not.
Thanks Adam.
This works great for Jira-originated groups but doesn't work for AD groups. Is nesting not supported for AD?
Good to hear you got it working.
The response here indicated you may need to change some configuration to get nested groups working for AD.
Hope this helps.
Unless I'm mistaken the post you provided is to do with altering the AD integration to find users in AD sub-groups of AD groups.
I wish to nest AD groups within Jira-only groups via groovy. This is possible via the GUI (after enabling nested groups in User Mgmt).
Any ideas Adam?
Reopened. Can anyone assist?
It looks like you're new here. Sign in or register to get started.