I have a question regarding some JIRA functionality and is hoping you could help me.
Is it possible in JIRA to set up permissions, I can have a Group/users only that can edit(add/remove) Watchers for certain issuetype. the group/user is read only on field Watchers for other issuetypes. That way the group/users have different permissions per issue type on field Watchers or Custom Fields.
Does it work for field Watchers per issuetype? I have created different workflow per issuetype, what property to each status of the workflow to be added to make it work, something may like
jira.permission.managewatcherlist.group=some-group
Thanks
Jenny
There are a few different techniques to control who can edit fields. A common one is to not have any fields in the "Edit Screen" for an issue, and instead use a transition that pops up a transition screen to edit the issue. You can then control access to the transition more granular then you can general edit rights. (There are other methods as well, using scriptrunner or Power scripts, for example)
However, watchers are a different beast.
There is specifically a "Manage Watchers" permission in the permission scheme,
While you can't have different permissions per issue type in the project, you can get creative,
You can assign the Manage Watchers permission to a group (or user) custom field value. ie, have a custom called called. "Allowed To Manage Watchers." You can then control who is allowed to edit the contents of that field. If a user/group gets added to that field, they are then allowed to manage the watchers.
Finally in your workflow in the create transition, you can populate that field.
Its not the most straightforward solution, but it would work.
Hi Andrew, Thank you very much for your help.
Should I use post-function workflow in the create transition? I set a group ""Managewatcherlist" in a "Manage Watchers" permission in the permission scheme, In script I add the user to the group "Managewatcherlist" to control who has "Manage Watchers" permission. the custom field "Allowed To Manage Watch" has the user as default value.
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.user.ApplicationUser
def groupManager = ComponentAccessor.getGroupManager()
def user = (ApplicationUser) ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Allowed To Manage Watchers").getValue(issue)
def group = groupManager.getGroup("Managewatcherlist")
groupManager.addUserToGroup(user,group)
ERROR [workflow.AbstractScriptWorkflowFunction]: ************************************************************************************* ERROR [workflow.AbstractScriptWorkflowFunction]: Script function failed on issue: null, actionId: 1, file: <inline script> java.lang.NullPointerException: Cannot invoke method getValue() on null object at Script75.run(Script75.groovy:5)
Can you please check and let me know how to populate that field?
Thanks,
Jenny
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not a scriptrunner user so I wouldn't be able to help you with that.
However, I think that is the wrong method anyway. Changing the membership of the group is not the way to go, as the group is shared across tickets, as you update the members of the group, you will change who can access all the tickets.
Lets keep this simple
Make a custom field of type "user picker" that is called "Users who can Manage Watchers"
In your permission scheme, set the Grant the "Manage Watchers" permission to the "User Custom Field Value" to "Users who can Manage Watchers"
(You may need to hit "show more" in the grant permission window to see it.
Then in the postfunction of your create transition, set the list of users in the "Users who can Manage Watchers" custom field to the list of users who can edit.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.