Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Remove User from Project Roles and Board Administrators

Jyoti Kumari
Contributor
December 24, 2024

Hello Team,

 

Kindly share API to remove specific user from project roles and board administrators using groovy script runner or through other ways to implement it inside plugin.

 

Thanks and Regards,

Jyoti

2 answers

2 accepted

1 vote
Answer accepted
Vitali Basarevski December 27, 2024

Hi @Jyoti Kumari 

You can use this script to replace a specific administrator on all boards that have one:

 

import com.atlassian.greenhopper.service.rapid.view.BoardAdminService
import com.atlassian.greenhopper.service.rapid.view.RapidViewService
import com.onresolve.scriptrunner.runner.customisers.JiraAgileBean
import com.onresolve.scriptrunner.canned.util.OutputFormatter
import com.atlassian.greenhopper.model.rapid.BoardAdmin
import com.atlassian.greenhopper.model.rapid.RapidView
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.user.util.UserManager
import com.atlassian.jira.user.ApplicationUser

@JiraAgileBean BoardAdminService boardAdminService
@JiraAgileBean RapidViewService rapidViewService

UserManager userManager = ComponentAccessor.getUserManager()
ApplicationUser jiraAdmin = ComponentAccessor.jiraAuthenticationContext.getLoggedInUser()


ApplicationUser oldUser = userManager.getUserByName("old_username") // <-- insert the username of the current user.
ApplicationUser newUser = userManager.getUserByName("new_username") // <-- insert the username of the new user.


Map<List<String>, List<String>> boardChanges = new HashMap<>()

BoardAdmin newBoardAdmin = BoardAdmin.builder().type(BoardAdmin.Type.USER).key(newUser.key).build()
List<RapidView> allBoards = rapidViewService.getRapidViews(jiraAdmin).getValue()
allBoards.each { RapidView board ->
try {

List<BoardAdmin> boardAdmins = boardAdminService.getBoardAdmins(board)

List<BoardAdmin> disabledBoardAdmin = boardAdmins
.findAll { BoardAdmin it -> it.type == BoardAdmin.Type.USER }
.findAll { BoardAdmin it -> userManager.getUserByKey(it.key) == oldUser }

if (disabledBoardAdmin) {

List<BoardAdmin> newAdmins = (boardAdmins - disabledBoardAdmin)
.findAll { BoardAdmin it -> it.key != newBoardAdmin.key }
.collect { BoardAdmin it -> BoardAdmin.builder().type(it.type).key(it.key).build() } + newBoardAdmin

boardAdminService.updateBoardAdmins(board, jiraAdmin, newAdmins)

boardChanges.put([board.name, board.id.toString()] , [boardAdmins.collect{it.key}.toString(), newAdmins.collect{it.key}.toString()])
}

} catch (Exception ignored) {}

}


OutputFormatter.markupBuilder {
if (boardChanges) {
ul {
boardChanges.each {str ->
li("Board name: " + str.key[0] + ", Board id: " + str.key[1])
ul{
li("Old board admins: " + str.value[0])
li("New board admins: " + str.value[1])
}
span{}
}
}
} else {
p('No changes to be made')
}
}
Jyoti Kumari
Contributor
December 28, 2024 edited

Hello @Vitali Basarevski ,

 

Thank you so much,It is working perfectly .

 Thanks and Regards,

Jyoti

0 votes
Answer accepted
Kseniia Trushnikova
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 24, 2024

Hi @Jyoti Kumari,

I've found two scripts from the Adaptavist library that might help:

Jyoti Kumari
Contributor
December 27, 2024 edited

Thank you @Kseniia Trushnikova 

It helps a lot for removing project role and board Admin.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
SERVER
VERSION
9.12.15
PRODUCT PLAN
STANDARD
TAGS
atlassian, loom, AI, meeting recording, community

[NEW] Record your meetings with Loom

Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.

Learn more
AUG Leaders

Atlassian Community Events