diff options
author | Sean McGivern <sean@gitlab.com> | 2019-02-19 10:41:19 +0000 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2019-02-19 10:41:19 +0000 |
commit | 1b5e3b2e91ed2d9fea3b92d824faad9f1df90e87 (patch) | |
tree | fe6054d7b92382b1bd9be918905c2e95edec2920 /lib | |
parent | 6e8c3ae831c74368480e684ca03aa210da569507 (diff) | |
parent | 0d8fd9f7deb7a6d6e99d3a6fcffcada435c6aac2 (diff) | |
download | gitlab-ce-1b5e3b2e91ed2d9fea3b92d824faad9f1df90e87.tar.gz |
Merge branch '55109-jira-integration-api-doesn-t-respect-available-format' into 'master'
API: Support Jira transition ID as string
Closes #55109
See merge request gitlab-org/gitlab-ce!24400
Diffstat (limited to 'lib')
-rw-r--r-- | lib/api/services.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/services.rb b/lib/api/services.rb index 163c7505a65..145897516a0 100644 --- a/lib/api/services.rb +++ b/lib/api/services.rb @@ -431,7 +431,7 @@ module API { required: false, name: :jira_issue_transition_id, - type: Integer, + type: String, desc: 'The ID of a transition that moves issues to a closed state. You can find this number under the JIRA workflow administration (**Administration > Issues > Workflows**) by selecting **View** under **Operations** of the desired workflow of your project. The ID of each state can be found inside the parenthesis of each transition name under the **Transitions (id)** column ([see screenshot][trans]). By default, this ID is set to `2`' } ], |