Is it possible to link to an issue and specify that a issue glance is open?

I would like to be able to link to a Jira issue that has a specific issue glance opened.

If I use AP.navigator.go(...), then the issue glance is full screen with just the Jira header:

AP.navigator.go("addonModule", { 
  addonKey: myAddonKey, 
  moduleKey: myIssueGlanceKey, 
  customData: { ... }
});

What I really want to be able to do is specify the issue URL and add a trigger for the ISSUE_GLANCE_OPENED event on myAddonKey:myIssueGlanceKey.

So something similar to:

// ***** Note this example will not work as hoped
// ***** /is just an example of what could be
AP.navigator.go('issue', {
  issueKey: 'TEST-1',
  customData: {
    event: {
      trigger: 'ISSUE_GLANCE_OPENED',
      for: `${myAddonKey}:${myIssueGlanceKey}`
    }
  }
});

Is there a way to achieve this?

3 Likes

@dmorrow just wondered if you knew. I’ve not been able to find any docs on this.