I have defined web section plugin module in my atlassian-plugin.xml
<web-section key="pluginkey" name="pluginname" location="admin_plugins_menu" weight="100" state="disabled">
<label key="plugin space"/>
<condition class="com.atlassian.jira.plugin.webfragment.conditions.UserIsAdminCondition" />
</web-section>
and by default its state is disabled. I am also using atlassian licensing api.
I want to display this web section to user only after perfrming validation on jira-license.
how do I make web section enable again after perfroming license check?
I think it is as straight forward as writing a new validation class and define that class name in your web-item definition in the atlassian-plugin.xml
And in the validation class, use the license api and check for the license status.
HI zezeto,
I have not provided web-item module in my question but i have defined them in my plugin.xml. And my web section module is working fine with location="admin_plugins_menu". I want to know how to make this section enabled and disabled using jira api
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I think that you have missed , web-item or in location replace "admin_plugins_menu" with "system.admin"
look to this example, it can help you.
https://developer.atlassian.com/display/JIRADEV/Web+Section+Plugin+Module
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.