Hi,
I'd like to automaticly add a task to epic (from Project B) when it will be moved from Project A to a Project B if the task has specific label.
I can't find a way how to do this or is it even possible.
Hello,
After you set customfield value, you need to update the issue as well. Could you try this after you set the field values:
updateIssue(ApplicationUser user, MutableIssue issue, EventDispatchOption eventDispatchOption, boolean sendMail)
This method will store the provided issue to the JIRA datastore.
For example:
issueManager.updateIssue(user, issue, EventDispatchOption.DO_NOT_DISPATCH, false)
You need to import event dispatch option, too
import com.atlassian.jira.event.type.EventDispatchOption
Regards,
Hello,
After you set customfield value, you need to update the issue as well. Could you try this after you set the field values:
updateIssue(ApplicationUser user, MutableIssue issue, EventDispatchOption eventDispatchOption, boolean sendMail)
This method will store the provided issue to the JIRA datastore.
For example:
issueManager.updateIssue(user, issue, EventDispatchOption.DO_NOT_DISPATCH, false)
You need to import event dispatch option, too
import com.atlassian.jira.event.type.EventDispatchOption
Regards,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, something went wrong and my answer is posted twice :)
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.