You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.