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,
would it be possible to make the Summary field editable ONLY for certain project roles for an issue type in a project?
Could this be possible with a behaviour?
Thanks!
Hey @Amelia Zaccara ,
Adding on to what @Mohamed Benziane has suggested.
As Behaviors will run in both the Create and Edit screen, this may cause some issues for you as the Summary field is a required field while creating an issue.
You can also add another condition to check if you're in the create screen.
An example below:-
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.security.roles.ProjectRoleManager
def projectRoleManager = ComponentAccessor.getComponent(ProjectRoleManager)
def summary = getFieldById('summary')
def adminRole = projectRoleManager.getProjectRole('Administrators')
def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def currentProject = getIssueContext().getProjectObject()
//Set Summary field as ReadOnly only if not in the Create screen
if(getAction() != 'Create') {
summary.setReadOnly(true)
//Check for user role here
if(projectRoleManager.isUserInProjectRole(currentUser, adminRole, currentProject)) {
summary.setReadOnly(false)
}
}
Regards.
Hi @Adrien Low [ServiceRocket] and @Mohamed Benziane
thanks for the advice.
I will add the condition in the behaviours.
Will it be necessary to create an additional line:
def adminRole = projectRoleManager.getProjectRole('Administrators')
for each project role that is allowed to edit the summary in the issue?
Thank you!
Amelia
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to the community.
Yes this is possible with behaviour. You just need to make the summary fiel read only and add a new condition "except user in project role"
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.