Hello,
We would like to upgrade our instance of Jira from server installation to cloud.
We are, however, concerned about a custom plug-in we have developed to our 'server instance' of Jira. This plug-in is about showing an extra drop-down field when creating an issue. It allows users to select from a list of values that come from another system. Behind the scenes, an HTTP request is made to one of our internal systems which returns a list of values to Jira and displayed to the end user.
To make this work we have done the following:
1. developed 2 .jar files (that hold code) and one .vm file (that hold UI elements).
2. copied one of the jar files to this location: \jira-home\plugins\installed-plugins
3. copied the other jar file to this location: \jira\atlassian-jira\WEB-INF\lib
4. copied the .vm file to this location: \jira\atlassian-jira\WEB-INF\classes\templates\plugins\fields\edit
5. from the admin panel ('Plugins' -> 'Manage Addons') we enabled the custom plugin
6. from admin panel ( Issues -> Fields -> Custom Fields) we enabled the field on various screens.
To summarize we have 2 questions:
1. Is it still possible to have such a custom field in Jira cloud installation? if yes, how? if not, what are the alternatives?
2. Can the method '/rest/api/2/worklog/updated' (from Jira API) return the value set on such a custom field?
Thanks