Rate this page:
If your app needs to provide a configuration or administration screen, we recommend adding a link and page to the Apps section of Jira administration (global settings).
For web sections:
admin_plugins_menu
For web items:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
...
"modules": {
"webSections": [
{
"key": "example-menu-section",
"location": "admin_plugins_menu",
"name": {
"value": "Example app name"
}
}
],
"webItems": [
{
"key": "example-section-link",
"location": "admin_plugins_menu/example-menu-section",
"name": {
"value": "Example app link"
},
"url": "/example-section-link"
}
]
}
...
The properties required for this location are the standard ones defined in the documentation for web sections and web items.
Rate this page: