diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2016-11-30 17:12:43 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2016-12-13 09:01:48 +0100 |
commit | 2cbd07e69c647726cfb927bf35a594850d4f22fa (patch) | |
tree | 218f294d4b02fe2fce9f31b99e56ae1962b4312a /lib/api/merge_requests.rb | |
parent | db9e1635d0d17596193ecbee8e0acc1916918d1d (diff) | |
download | gitlab-ce-2cbd07e69c647726cfb927bf35a594850d4f22fa.tar.gz |
Don't allow blank MR titles in APIapi-dont-allow-blank-mr-titles
Diffstat (limited to 'lib/api/merge_requests.rb')
-rw-r--r-- | lib/api/merge_requests.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/merge_requests.rb b/lib/api/merge_requests.rb index 55bdbc6a47c..5d1fe22f2df 100644 --- a/lib/api/merge_requests.rb +++ b/lib/api/merge_requests.rb @@ -143,8 +143,8 @@ module API success Entities::MergeRequest end params do - optional :title, type: String, desc: 'The title of the merge request' - optional :target_branch, type: String, desc: 'The target branch' + optional :title, type: String, allow_blank: false, desc: 'The title of the merge request' + optional :target_branch, type: String, allow_blank: false, desc: 'The target branch' optional :state_event, type: String, values: %w[close reopen merge], desc: 'Status of the merge request' use :optional_params |