I have user called "Engineering" and in my project I have setup that a newly created issue it set to "Pending Acceptance" Status (i.e. "Pending Acceptance" Workflow Step) and gets assigned to this user.
How can I set it up so that while the Status stays "Pending Acceptance" any User that belongs to a "Support" group can see only "Engineering" as an Assignee?
For that step, you can use a Condition option to include only those groups that can assign. Since you can create more than one condition and use the OR operator, you can add all of the groups that can assign. And, any user not in those groups you define, will not be able to assign.
Closer but not quite there yet... :-)
Conditions wouldn't work because they are for transitions, and I'm dealing with a workflow step. Permission properties seem to get me closer to the goal.
I've deleted the <jira.permission.assignable.user.1=Engineering> property for the "Pending Acceptance" Workflow Step, and replaced it with:
jira.permission.assign.group.1=jira-developres
i.e. allowing users only from the 'Developers' group to use 'Assign'.
Is it possible now to add something to it allowing users from the 'Support' group to use 'Assign' as well, but a "limited" Assign, where they will see only one name in the Assignee drop down? (i.e. "Engineering")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Regina,
Inside the workflow, in the create issue transition you can add a post-function that assigns the issue to that user. Then you can manage the issue assignee by configuring the permission scheme. You can assign only that user for the permission called 'Assignable user' or you can give the 'Asign Issue' permission just to the project administrator or something like that. Could be like that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Or maybe I'm not understanding well?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I believe you didn't understand me. I need it to be working exactly as I put it, i.e. *ONLY* while the workflow step is "Pending Acceptance" then the only "Assignable User" for anybody logged in from the "Support" group is "Engineering" user.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The only thing I could imagine to achieve this is by writing a script for a condition test with the Script Runner plugin. I'm pretty sure this can't be done inside the Jira itself, but maybe with the plugin or doing a little dev...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think I quite understand either. Are you wanting a user from another group to be able to assign anyone, but only members of a support group only able to assign the Engineering user?
If so, I would agree with the prior poster unless someone has developed a custom plugin for this. I can choose to make only a certain group that can make an assignment; I can choose to make only members of a group be able to be assigned. But, I cannot make it such that a user from one group can have a different set of assignees than another group.
You could just remove supports ability to assign while it is in that status using the status permission properties.
I often use this to allow only specific groups the permission to assign when at a given step.
I like this tutorial on the subject: http://www.j-tricks.com/1/post/2011/02/permissions-based-on-workflow-status.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
KKELLY,
repeating part of your answer " You could just remove supports ability to assign while it is in that status using the status permission properties." -- THIS IS EXACTLY WHAT I NEED.
How can I remove "Assign" permission for a "Support" group when the Status="Pending Acceptance"?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here you have a little documentation about that:
http://www.j-tricks.com/1/post/2011/02/permissions-based-on-workflow-status.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It partially working for me, but I really need to be able to filter it by Group. So what I did is I've added a property
jira.permission.assignable.user.1=Engineering
so now if I'm clicking on the Assign button being on the issue view page, I see only Engineering in the drop-down for the Assignee.
However if I login as a user from non-Support group, I want to be able to see all the users in the Assignee drop-down as it was before. Is it possible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.