If I use the below code i am able to get the Issue Key, but i need to fetch the summary of the issue in js.
issueKey = JIRA.Issue.getIssueKey();// For Getting Issue Key
Try this, it will work
function getSummary() {
var key = this.JIRA.Issue.getIssueKey();
var summary;
AJS.$.ajax({
url: "/rest/api/2/issue/" + key,
type: 'get',
dataType: 'json',
async: false,
success: function(data) {
summary = data.fields.summary;
}
});
return summary;
};
getSummary();I am sure there is an easier way, but this surely works
Happy weekend!
I have already used this api to get the summary, but i thought there is some easy way to get it. Anyway's thanks for your reply.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not tried getSummary() yet?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tried and not working, it not present in JIRA.Issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.