Hi folks -
I have created a Jira add-on and placed it in the home container. However, when I click the link and load my add-on, it loads into a project context. The purpose of my add-on is to provide some higher-level business intelligence about all open projects in our jira instance.
The screenshot shows that when I click our add-on button, it loads up my add-on just fine but I’m also seeing the project context, which is not what I want. Can I fix this?
Note that if I manually remove the ProjectID from the URL context parameters, then I get the desired results. i.e.
https://badrabbit.atlassian.net/plugins/servlet/ac/com.badrabbit.taskmaster/TaskMaster?user.key=daniel.dicicco&project.key=CMHPROFILE&project.id=10616&user.id=daniel.dicicco
, if I remove "project.key…etc’ then I get the display that I want, without the project context showing on the left.
How can I do this programatically using jira tools? Or do I need to hack my react app up a bit and get a workaround?
{
"name": "Task Master",
"description": "Prototype Jira Plug-in for PM",
"key": "com.badrabbit.taskmaster",
"baseUrl": "https://taskmaster-1916c.firebaseapp.com",
"vendor": {
"name": "Bad Rabbit",
"url": "http://www.badrabbit.com"
},
"authentication": {
"type": "none"
},
"apiVersion": 1,
"modules": {
"generalPages": [
{
"url": "/",
"key": "TaskMaster",
"location": "system.top.navigation.bar",
"name": {
"value": "TaskMaster"
}
}
]
}
}