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

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 Leaders.
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>

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events