Commit da54a1e644254687225a7351dc44bb28d688600a
1 parent
d7ec7c79
Exists in
master
and in
4 other branches
Update group access levels in docs.
Showing
2 changed files
with
13 additions
and
12 deletions
Show diff stats
doc/api/groups.md
... | ... | @@ -59,6 +59,19 @@ Parameters: |
59 | 59 | |
60 | 60 | ## Group members |
61 | 61 | |
62 | + | |
63 | +**Group access levels** | |
64 | + | |
65 | +The group access levels are defined in the `Gitlab::Access` module. Currently, these levels are recognized: | |
66 | + | |
67 | +``` | |
68 | + GUEST = 10 | |
69 | + REPORTER = 20 | |
70 | + DEVELOPER = 30 | |
71 | + MASTER = 40 | |
72 | + OWNER = 50 | |
73 | +``` | |
74 | + | |
62 | 75 | ### List group members |
63 | 76 | |
64 | 77 | Get a list of group members viewable by the authenticated user. | ... | ... |
doc/api/projects.md
... | ... | @@ -221,18 +221,6 @@ Parameters: |
221 | 221 | + `snippets_enabled` (optional) |
222 | 222 | + `public` (optional) |
223 | 223 | |
224 | -**Project access levels** | |
225 | - | |
226 | -The project access levels are defined in the `Gitlab::Access` module. Currently, these levels are recognized: | |
227 | - | |
228 | -``` | |
229 | - GUEST = 10 | |
230 | - REPORTER = 20 | |
231 | - DEVELOPER = 30 | |
232 | - MASTER = 40 | |
233 | - OWNER = 50 | |
234 | -``` | |
235 | - | |
236 | 224 | |
237 | 225 | ### Create project for user |
238 | 226 | ... | ... |