Jira plugin: How can I create a new view in the admin settings?

Hello jira community,

I want to create a jira plugin in java.
It should be a new view inside the jira admin settings interface.
Can anyone tell my how I can create this new view inside jira or at least what module I need to create?
It shouldn’t be an external page or own UI elements on an existing settings view.
Later the plugin should able to create fix versions for multiple projects, which the user can select.

Thank you very much for your help!
Niklas

1 Like

you can use web-section and web-item modules with admin locations

jira modules: https://developer.atlassian.com/server/jira/platform/web-item/
Admin UI locations: Administration UI locations

Thank you for you answer!

With your links I’m only able to create a new button which can open a new web page like google.com. That is nice but not exactly what I need.
What I need is a button (web-item should do) that opens a new jira admin settings page/view. Not any external web page.
Can you help me please :slight_smile:

@NiklasGrossmann you can refer following link
https://comsysto.github.io/kitchen-duty-plugin-for-atlassian-jira/tutorial/04-step-01-planning-page--webwork-action-and-html-view/

you can find sample code on following link
https://bitbucket.org/mdoar/webwork-sample/src/master/src/main/resources/atlassian-plugin.xml

1 Like