Since 2 days ago we have been receiving reports that our customers can’t access one of the app’s page
We haven’t change anything recently. After some investigation it turned out that the url contains additional slash before “config” part, i.e. - Jira
If an additional slash is removed, you can access the page.
Our config:
"webItems": [
{
"location": "admin_plugins_menu/issue-templates-web-section",
"weight": 200,
"url": "/config-page",
"context": "page",
"name": {
"value": "Configuration"
},
"key": "config-page-web-item"
},
As a workaround we will change the url as follow: (remove slash)
"webItems": [
{
"location": "admin_plugins_menu/issue-templates-web-section",
"weight": 200,
"url": "config-page",
"context": "page",
"name": {
"value": "Configuration"
},
"key": "config-page-web-item"
},
Have the change been announced? I have checked the documentation and in the example, there is a slash in url. We are confused what happened and wondering whether we should expect more changes in atlassian-connect.json regarding urls in other modules.
https://developer.atlassian.com/cloud/jira/platform/modules/web-item/