Hello! Our company uses JIRA server mainly as a bugtracking tool. I want to restrict certain workflow statuses (every 'work in progress' status) so that only the currently assigned user (assignee) can assign another user.
As I understand it (the documentation seems to be very poor) the way to do this is using Workflow Properties. I tried
jira.permission.assign.role = assignee
but it doesn't seem to work and some users even get errors when viewing an issue. What is the correct syntax for my problem? Is there an role ID for the assignee?
Thanks in advance!
"the documentation seems to be very poor" - I'd say that's an understatement!
Despite that, you've managed to get quite close. My notes say that the format of it is:
jira.permission.[subtasks.]{permission}.{type} = <something>
The [subtasks] I'm not sure about, and it's optional. I think it's to do with saying "no, bob, you can't create subtasks while in this status", so let's ignore that for now.
Your line is "assign.role = assignee". That will nearly work, but not the way you think. The role is a user role in a project, not a user/issue role. So you'd actually use it to say "assign.projectrole = developer" and it would refer to people in the role of developer in that project. You could have a role called assignee, but it's a role, not the assignee! Also, it will want the id of the role, not the name.
I think you want
jira.permission.assign.assignee = true
Thanks, this was exactly what I was looking for!
Btw, using the role name acutally works for me. I'm using
jira.permission.assign.group = QS
and it does what it's supposed to do.
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.