Hi all,
I am on Jira Software for Cloud. A user wants editing of a custom field to be restricted to a particular group. The field is only used when the issue is resolved. I can add the field to a Resolve screen but that still won't limit editing of just that field to users in a certain group on the view/edit issue screen, right?
I'm not finding any solutions for this except for creating transitions screens etc. just wondering if there is a better way to accomplish this that anyone has experience with?
Thanks
Natasha
What about setting status properties. Something like
https://community.atlassian.com/t5/Jira-questions/jira-permission-edit-group-jira-administrators-means-that-only/qaq-p/730145
I believe that is to prevent editing of the issue in its entirety right? Not just a particular field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, only mentioned group can edit the issue in that status (in this case Done). Per your statement - " The field is only used when the issue is resolved", - then you can apply this since the field is only available when it is resolved.
Or if you want, you an use Behaviour. Something like,
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.security.roles.ProjectRoleManager
def fieldname = getFieldById("customfield_xxxx")
// Get the current user
def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
if (ComponentAccessor.getGroupManager().getGroupsForUser(currentUser)?.find { it.name in ["Name of the Group"]} && getFieldScreen().name == "Name of your resolve screen") {
//log.warn('ok')
//return true
fieldname,setHidden(false)
} else {
fieldname,setHidden(false)
}
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.