Hi,
when ticket is moving moving from one status . every status has a transition screen which has a field Assignee.
if assignee field is not selected by the current user who is is working on the ticket in transition screen ,then the ticket must be automatically assigned to reporter.
i am using Script runner add on.
please suggest me solution
Regards,
Abhishree Nagesh
I'm sure this could be done multiple ways, but here is one that should work, since you mention having ScriptRunner installed. You can create a post function of type Script Post-Function [ScriptRunner], Custom script post-function with the code
if(!issue.assignee)
{
issue.assignee = issue.reporter
}
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.