Skip to content

Commit c1f1f38

Browse files
Get a list of the transitions possible for this issue by the current user, along with fields that are required and their types - Fix #35
1 parent b9d74b9 commit c1f1f38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/jira.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
11461146
this.listTransitions = function(issueId, callback) {
11471147
var options = {
11481148
rejectUnauthorized: this.strictSSL,
1149-
uri: this.makeUri('/issue/' + issueId + '/transitions'),
1149+
uri: this.makeUri('/issue/' + issueId + '/transitions?expand=transitions.fields'),
11501150
method: 'GET',
11511151
json: true
11521152
};

0 commit comments

Comments
 (0)