summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2019-02-19 10:41:19 +0000
committerSean McGivern <sean@gitlab.com>2019-02-19 10:41:19 +0000
commit1b5e3b2e91ed2d9fea3b92d824faad9f1df90e87 (patch)
treefe6054d7b92382b1bd9be918905c2e95edec2920 /lib
parent6e8c3ae831c74368480e684ca03aa210da569507 (diff)
parent0d8fd9f7deb7a6d6e99d3a6fcffcada435c6aac2 (diff)
downloadgitlab-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.rb2
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`'
}
],