We have a scenario where we have a custom issue type (roadmap issue) which is a parent of an epic(s) which is the parent of story(s).
I have been searching for a plugin that would support this scenario:
I update fields in the top level roadmap issue and all of the child epics and stories get those fields updated as well. All issues are in the same project. I just want to keep all levels updated with the latest data as updated by the project manager in the roadmap issue.
I've looked at several plugins, but most seem to be for syncing of issues across projects or they support the sync of epics -> stories and stories -> sub-tasks.
Is there anything that will support my use case with a custom issue type and parent -> child epic -> child story?
My JIRA admins are also reticent to do custom scripting as they don't want to support it during JIRA upgrades, so scripting is probably out.
you will propably need following components:
public static byte[] serialize(final Object object) throws IOException {
final ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
final ObjectOutputStream oOut = new ObjectOutputStream(byteOut);
oOut.writeObject(object);
return DatatypeConverter.printBase64Binary(byteOut.toByteArray());
}
there is already a plugin for doing this.
Consider if buying iDalko Table Grid is an option for your customers.
https://marketplace.atlassian.com/plugins/com.idalko.jira.plugins.igrid
edit: excuse me, just noticed that you already checked it.
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.