Snippets

Adaptavist Create a personal space for every user

Created by Lee Wonnacott
/*
 * This script provides an example of how you can create a personal space for every user within your Confluence instance
 * All right, title and interest in this code snippet shall remain the exclusive intellectual property of Adaptavist Group Ltd and its affiliates. Customers with a valid ScriptRunner 
 * license shall be granted a  non-exclusive, non-transferable, freely revocable right to use this code snippet only within their own instance of Atlassian products. This licensing notice cannot be removed or amended and must be included in any circumstances where the code snippet is shared by You or a third party." 
*/

import com.atlassian.sal.api.component.ComponentLocator
import com.atlassian.user.GroupManager
import com.atlassian.confluence.user.UserAccessor
import com.atlassian.confluence.spaces.SpaceManager

def spaceManager = ComponentLocator.getComponent(SpaceManager)
def userAccessor = ComponentLocator.getComponent(UserAccessor)
def groupManager = ComponentLocator.getComponent(GroupManager)

def group = groupManager.getGroup("confluence-users")
def members = groupManager.getMemberNames(group)
def user

members.each{ member -> 
    user = userAccessor.getUserByName(member)
    spaceManager.createPersonalSpace('Space name','Space description', user)
}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.