The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results forĀ 
Search instead forĀ 
Did you mean:Ā 
  • Community
  • Q&A
  • Jira
  • Questions
  • move multiple users from different project roles in a project to one certain project role at once

move multiple users from different project roles in a project to one certain project role at once

Deleted user
July 15, 2013

Hi all,

is it possible to move all users of a certain project to one special project role at once? We are archiving projects by changing the category to "outdated". The outdated projects should now have read only access for all current users of this project.

We are running JIRA 4.4.4

Best regards,

Sebastian

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
July 15, 2013

you can try with the JellyScript

to get project roles memebers from project you have to use jira:GetProjectRoleActors

https://confluence.atlassian.com/display/JIRA/Jelly+Tags#JellyTags-jira%3AGetProjectRoleActors

to add memebers to project role you have to use jira:AddActorsToProjectRole

https://confluence.atlassian.com/display/JIRA/Jelly+Tags#JellyTags-jira%3AAddActorsToProjectRole

something like follows

<JiraJelly xmlns:jira="jelly:com.atlassian.jira.jelly.JiraTagLib" xmlns:core="jelly:core">
    <jira:GetProjectRoleActors projectkey="MKY" projectroleid="1" var="roleactors" >
        <core:forEach var="actor" items="${roleactors.users}">
		<jira:AddActorsToProjectRole projectroleid="1" actors="${actor.name}"
        projectkey="MKY" actortype="atlassian-group-role-actor" />      
        </core:forEach>
    </jira:GetProjectRoleActors>
</JiraJelly>

TAGS
AUG Leaders

Atlassian Community Events