summaryrefslogtreecommitdiff
path: root/doc/api/groups.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/groups.md')
-rw-r--r--doc/api/groups.md25
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.