Commit 816605ed authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'info-groups-ee' into 'master'

added important info to groups doc

I didn't notice it was not on EE, so I added the additional information.

https://dev.gitlab.org/gitlab/gitlab-ee/issues/310#note_49357

Thanks!

See merge request !430
parents b4523ebb 7c5e9e98
...@@ -81,3 +81,17 @@ To enable this feature, navigate to group settings page, select `Member lock` an ...@@ -81,3 +81,17 @@ To enable this feature, navigate to group settings page, select `Member lock` an
![Checkbox for membership lock](groups/membership_lock.png) ![Checkbox for membership lock](groups/membership_lock.png)
This will disable the option for all users who previously had permissions to operate project memberships so no new users can be added. Furthermore, any request to add new user to project through API will not be possible. This will disable the option for all users who previously had permissions to operate project memberships so no new users can be added. Furthermore, any request to add new user to project through API will not be possible.
## Namespaces in groups
By default, groups only get 20 namespaces at a time because the API results are paginated.
To get more (up to 100), pass the following as an argument to the API call:
```
/groups?per_page=100
```
And to switch pages add:
```
/groups?per_page=100&page=2
```
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment