summaryrefslogtreecommitdiff
path: root/doc/api/projects.md
diff options
context:
space:
mode:
authorFelix Gilcher <felix.gilcher@asquera.de>2013-01-28 16:46:58 +0100
committerFelix Gilcher <felix.gilcher@asquera.de>2013-01-28 16:46:58 +0100
commita90d5c21b55584572ff22d7a3affd84cd19d38d2 (patch)
tree9036fa9a620b5dfc5cc3d84b678ee2f53a22a193 /doc/api/projects.md
parent2ddaf0038710d057e96f8211036399aa65d3ddb4 (diff)
downloadgitlab-ce-a90d5c21b55584572ff22d7a3affd84cd19d38d2.tar.gz
describe the project access level
the documentation mentions access_level as required parameter, but fails to list accepted values.
Diffstat (limited to 'doc/api/projects.md')
-rw-r--r--doc/api/projects.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/api/projects.md b/doc/api/projects.md
index 411286750f8..e8730173c0a 100644
--- a/doc/api/projects.md
+++ b/doc/api/projects.md
@@ -107,6 +107,18 @@ Parameters:
Will return created project with status `201 Created` on success, or `404 Not
found` on fail.
+## Project access levels
+
+The project access levels are defined in the `user_project` class. Currently, 4
+levels are recoginized:
+
+```
+ GUEST = 10
+ REPORTER = 20
+ DEVELOPER = 30
+ MASTER = 40
+```
+
## List project team members
Get a list of project team members.