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
Our developers are required to add specific notes and instructions when resolving a ticket.
I've created a specific field for them to do this, which is hidden from the client portal, however I'm struggling to get this working properly.
I've successfully made it mandatory on transition to another status but, the developers don't have (and shouldn't have) the Service Desk Agent role so they can't transition tickets.
Is there any way to setup a field that is:
Appreciate I might be missing something in workflows, any advice is mega appreciate as I've read every article and community query around this but just haven't found a resolution
Update -
Never mind, figured out how to do this with conditions in the workflow
Obsolete due to the update of the initial question.
Hi Ana,
I'm not sure if this is what you're trying to achieve but you can set the field to be shown, required and editable only for users in certain roles via Scriptrunner Behaviours.
Just add in the condition to validate if the logged in user is in the certain roles, then the field is showed and required, and it can be edited.
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.security.roles.ProjectRoleManager
def projectRoleManager = ComponentAccessor.getComponent(ProjectRoleManager)
def user = ComponentAccessor.jiraAuthenticationContext.loggedInUser
def remoteUsersRoles = projectRoleManager.getProjectRoles(user, issueContext.projectObject)*.name
def note = getFieldByName("Notes and Instructions")
note.setHidden(true)
note.setReadOnly(true)
//If the user's roles contain "Developers"
if ("Developers" in remoteUsersRoles) {
note.setHidden(false)
note.setRequired(true)
note.setReadOnly(false)
}
else {
note.setHidden(true)
note.setRequired(false)
note.setReadOnly(true)
}
Hope this help!
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.