Hi everyone,
I have implemented a plugin that makes operation on subtasks when parent issue has updated.
I want to add a control that checks one of custom field's changes. This custom field is numberfield type.
My control will apply if new value of this custom field is bigger than old value issue update event can not fire and show a message to user like invalidInputException class messages, but i cannot block the issue updated event.
My algorithm is simply like below;
public void issueUpdated(IssueEvent event)
{
new_value and old_value are comes from changeHistoryManager object
if(new_value < old_value){
// do not complete issue updated event
// return a message to user
}
}
Could anybody help me. i will be appreciated.
you cant, because you are using ondemand which does not permit 3rd party plugins to be installed. See https://confluence.atlassian.com/display/AOD/Restricted+Functions+in+Atlassian+OnDemand
Even if you were not on OnDemand (See Andy's answer), this simply won't work.
The problem is that you have not seen the timing cycle. An issue event happens AFTER the update is applied. You simply can't "block" an action based on an event, it's too late, it's done.
There's a phrase "closing the stable door after the horse has bolted". The horse has run off. You can close the door, but it's not going to stop the horse reaching freedom (or a burger factory). It's gone.
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.