summaryrefslogtreecommitdiff
path: root/lib/api/commits.rb
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2016-11-24 13:30:53 +0100
committerRobert Schilling <rschilling@student.tugraz.at>2016-11-24 13:35:26 +0100
commit9dfbfbb2d10dfc6297acff1b59dfbaf43b848d96 (patch)
treec503432eaef1c4c658b79c9b5e5e4d17d592c78f /lib/api/commits.rb
parenta44c9b9e8e8dfbbc37056e812c3b263eb92b644b (diff)
downloadgitlab-ce-9dfbfbb2d10dfc6297acff1b59dfbaf43b848d96.tar.gz
Don't convert data which already is the target typeapi-no-convert
Diffstat (limited to 'lib/api/commits.rb')
-rw-r--r--lib/api/commits.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/commits.rb b/lib/api/commits.rb
index 0319d076ecb..2670a2d413a 100644
--- a/lib/api/commits.rb
+++ b/lib/api/commits.rb
@@ -48,7 +48,7 @@ module API
requires :id, type: Integer, desc: 'The project ID'
requires :branch_name, type: String, desc: 'The name of branch'
requires :commit_message, type: String, desc: 'Commit message'
- requires :actions, type: Array, desc: 'Actions to perform in commit'
+ requires :actions, type: Array[Hash], desc: 'Actions to perform in commit'
optional :author_email, type: String, desc: 'Author email for commit'
optional :author_name, type: String, desc: 'Author name for commit'
end