diff options
author | Alex Denisov <1101.debian@gmail.com> | 2012-09-03 18:00:24 +0300 |
---|---|---|
committer | Alex Denisov <1101.debian@gmail.com> | 2012-09-03 18:00:24 +0300 |
commit | e078a173d6fad0ec79ed252f5e268f060c37508d (patch) | |
tree | 2c51d5fcf3a7eb010564e528b7259388448d5b2d /doc | |
parent | 0c5e556922b4c7ff71c6af6255a0f6783e25ca0c (diff) | |
download | gitlab-ce-e078a173d6fad0ec79ed252f5e268f060c37508d.tar.gz |
Create project via API: fixes added
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/projects.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/api/projects.md b/doc/api/projects.md index b0c1e65709c..32775c3216a 100644 --- a/doc/api/projects.md +++ b/doc/api/projects.md @@ -102,6 +102,12 @@ Parameters: + `name` (required) - new project name + `code` (optional) - new project code, uses project name if not set + `path` (optional) - new project path, uses project name if not set ++ `description (optional) - short project description ++ `default_branch` (optional) - 'master' by default ++ `issues_enabled` (optional) - enabled by default ++ `wall_enabled` (optional) - enabled by default ++ `merge_requests_enabled` (optional) - enabled by default ++ `wiki_enabled` (optional) - enabled by default Will return created project with status `201 Created` on success, or `404 Not found` on fail. |