summaryrefslogtreecommitdiff
path: root/lib/api/issues.rb
diff options
context:
space:
mode:
authorOswaldo Ferreira <oswaldo@gitlab.com>2017-04-05 13:31:15 -0300
committerOswaldo Ferreira <oswaldo@gitlab.com>2017-04-10 16:13:48 -0300
commitfd32960e7c94bdc0db9704b5ec7661defdc488e3 (patch)
treeac5fa5d76ada7a52ae9a0fee23af24f6bdccdc29 /lib/api/issues.rb
parent0b5a8a34e0b7851957b976a8151a7d6acf8b9f69 (diff)
downloadgitlab-ce-fd32960e7c94bdc0db9704b5ec7661defdc488e3.tar.gz
Separate CE params on Grape API
Diffstat (limited to 'lib/api/issues.rb')
-rw-r--r--lib/api/issues.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/api/issues.rb b/lib/api/issues.rb
index 09053e615cb..05423c17449 100644
--- a/lib/api/issues.rb
+++ b/lib/api/issues.rb
@@ -30,7 +30,7 @@ module API
use :pagination
end
- params :issue_params do
+ params :issue_params_ce do
optional :description, type: String, desc: 'The description of an issue'
optional :assignee_id, type: Integer, desc: 'The ID of a user to assign issue'
optional :milestone_id, type: Integer, desc: 'The ID of a milestone to assign issue'
@@ -38,6 +38,10 @@ module API
optional :due_date, type: String, desc: 'Date time string in the format YEAR-MONTH-DAY'
optional :confidential, type: Boolean, desc: 'Boolean parameter if the issue should be confidential'
end
+
+ params :issue_params do
+ use :issue_params_ce
+ end
end
resource :issues do