Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Atlassian connect Add on, creating JIRA report

Mukul March 2, 2015

The Report Plugin Module for JIRA server defines a way to create a report. Essentially, have a <report> element in plugin.xml, have <properties> sub elements to describe the configuration screen, and at the end submit this configured page to a Report Context provider.

(https://developer.atlassian.com/jiradev/jira-architecture/building-jira-add-ons/jira-plugins2-overview/jira-plugin-module-types/report-plugin-module)

 

What is a equivalent mechanism to create a report in JIRA connect add-on. I am able to bring my report thumbnail on reports page using:

"modules": {
"jiraReports": [
{
"key": "my-custom-report",
"name": {"value":"My Custom Report"},
"description":{"value":"My Custom Report" }, 
 "url": "/my-custom-report-url",

         "reportCategory": "other",

 "thumbnailUrl": "/report.png"
}
]
}

However, how should I proceed further ? How does a connect add-on configure report properties to be displayed by configure screen ? Can I hook up my report with ConfigureReport!.jspa action ? Any example or clue is much appreciated.

Thanks

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

1 vote
Answer accepted
filiprogaczewski
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 2, 2015

Report module in Connect is different from the report module in P2. You are in charge of developing the configure screen and then displaying the report depending on the configuration provided by the user. 

Mukul March 2, 2015

Thanks Filip, I will little intrigued if connect had a similar mechanism. As advised, I will take charge if my report.

TAGS
AUG Leaders

Atlassian Community Events