diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-10-03 06:27:47 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-10-03 06:27:47 +0000 |
commit | 62673d58edcc20076cbaf94e92c4ec1db35aa283 (patch) | |
tree | 88e9b04977b120e9675ecd134794160c45ef640e /doc/api/groups.md | |
parent | c44c5f5faa39efdee1100eba88116c640e2f64ce (diff) | |
parent | da54a1e644254687225a7351dc44bb28d688600a (diff) | |
download | gitlab-ce-62673d58edcc20076cbaf94e92c4ec1db35aa283.tar.gz |
Merge branch 'update_api_documentation' of /home/git/repositories/gitlab/gitlabhq
Diffstat (limited to 'doc/api/groups.md')
-rw-r--r-- | doc/api/groups.md | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/doc/api/groups.md b/doc/api/groups.md index fb77901c65b..492dce06635 100644 --- a/doc/api/groups.md +++ b/doc/api/groups.md @@ -8,12 +8,12 @@ GET /groups ```json [ - { - "id": 1, - "name": "Foobar Group", - "path": "foo-bar", - "owner_id": 18 - } + { + "id": 1, + "name": "Foobar Group", + "path": "foo-bar", + "owner_id": 18 + } ] ``` @@ -59,6 +59,19 @@ Parameters: ## Group members + +**Group access levels** + +The group access levels are defined in the `Gitlab::Access` module. Currently, these levels are recognized: + +``` + GUEST = 10 + REPORTER = 20 + DEVELOPER = 30 + MASTER = 40 + OWNER = 50 +``` + ### List group members Get a list of group members viewable by the authenticated user. |