diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-06 19:14:11 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-06 19:14:11 +0200 |
commit | cfa15d0846e43b72d91ec83384c8d1cefcd1c80c (patch) | |
tree | 3de0edb4c9e897e12fdff06fce529e007fc0e2ae /lib | |
parent | 580dfe5af9c84feafaad1f870d53e2a49d27e0be (diff) | |
download | gitlab-ce-cfa15d0846e43b72d91ec83384c8d1cefcd1c80c.tar.gz |
Remove default_branch support from API project creation
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/api/projects.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/api/projects.rb b/lib/api/projects.rb index 221f1f1e23c..42560572046 100644 --- a/lib/api/projects.rb +++ b/lib/api/projects.rb @@ -60,7 +60,6 @@ module API # Parameters: # name (required) - name for new project # description (optional) - short project description - # default_branch (optional) - 'master' by default # issues_enabled (optional) # wall_enabled (optional) # merge_requests_enabled (optional) @@ -75,7 +74,6 @@ module API attrs = attributes_for_keys [:name, :path, :description, - :default_branch, :issues_enabled, :wall_enabled, :merge_requests_enabled, |