Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×Hello everyone, i am writing a confluence plugin.
I have an issue with "index-key" parameter of "blueprint" tag. According the documentation it specifies the default label of a page.
https://developer.atlassian.com/server/confluence/blueprint-module/
i copied a peace of intermediate blueprint plugin from here:
https://developer.atlassian.com/server/confluence/write-an-intermediate-blueprint-plugin/
<blueprint key="my-blueprint" content-template-key="simplebp-template" index-key="my-index" > <dialog-wizard key="simplebp-wizard"> <dialog-page id="page1Id" template-key="MyPlugin.Blueprints.Simple.page1Form" title-key="my.blueprint.wizard.page1.title" last="true"/> </dialog-wizard> </blueprint>
I have changed index-key="my-index" to index-key="MyLable", but it doesn`t affect anything. All new pages have the lable "my-index".
i found this question, but it didn`t help me. https://community.atlassian.com/t5/Answers-Developer-Questions/How-to-create-default-labels-for-a-content-template/qaq-p/496258
is there a way to set default label for a template?