How to list the values in issue custom field?

Mallikarjuna V February 11, 2017

Hi,

I am using on-demand JIRA. I want to create an add-on for issue custom field from "jiraIssueFields" module. Here, In this field, I need to get the values from my database and list them in to custom field.

Could any one help me out to develop an add-on?

Thanks in Advance!

 

4 answers

0 votes
Mallikarjuna V February 13, 2017

That is fine. But, As I mentioned in above module, where I need to write script. If we see below module, there is an option say URL where we can call html file.

"generalPages": [
         {
             "key""activity",
             "location""system.top.navigation.bar",
             "name": {
                 "value""Activity"
             },
             "URL""/index.html",
             "conditions": [{
                 "condition""user_is_logged_in"
             }]
         }
}

 But in 'JiraIssueFields' there is no option to call any other files like HTML and JS. So, Could you please tell me where I have to write code and how to call that from 'JiraIssueFields' module.

Thanks in Advance!

0 votes
Vasiliy Zverev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 13, 2017

If you want to get values from your own DB with JavaScript you need some web service with REST client to do this.

0 votes
Mallikarjuna V February 13, 2017

Hi Vasiliy Zverev,

Thanks for your response!

I want to implement using javascript. Could you please let me know that the how to get values from my database and put them in to JIRA database.

I am using below module

 

"modules":  {

"jiraIssueFields": [
{
"key" : "team-issue-field",
"name" : {
"value" : "Designs"
},
"description" : {
"value" : "Choose a Design"
},
"type": "single_select",
"extractions": [{
"path": "category",
"type": "string",
"name": "category"
}]
}
]

}

I have no idea where to write script to get the values from my database and put them in to JIRA DB.

Finally the values should be listed under custom field(Designs).

Thanks in Advance! 

0 votes
Vasiliy Zverev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 12, 2017

If you want to store values into JIRA database then you need to use Active Objects.

If it is you own database - then use some JDBC driver.

Suggest an answer

Log in or Sign up to answer