Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/group_protected_branches.md')
-rw-r--r--doc/api/group_protected_branches.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/api/group_protected_branches.md b/doc/api/group_protected_branches.md
index c017d0741ce..10b7ff92e9c 100644
--- a/doc/api/group_protected_branches.md
+++ b/doc/api/group_protected_branches.md
@@ -49,7 +49,7 @@ Example response:
[
{
"id": 1,
- "name": "master",
+ "name": "main",
"push_access_levels": [
{
"id": 1,
@@ -114,7 +114,7 @@ GET /groups/:id/protected_branches/:name
```shell
curl --header "PRIVATE-TOKEN: <your_access_token>" \
- "https://gitlab.example.com/api/v4/groups/5/protected_branches/master"
+ "https://gitlab.example.com/api/v4/groups/5/protected_branches/main"
```
Example response:
@@ -122,7 +122,7 @@ Example response:
```json
{
"id": 1,
- "name": "master",
+ "name": "main",
"push_access_levels": [
{
"id": 1,
@@ -270,7 +270,7 @@ curl --request POST \
--header "PRIVATE-TOKEN: <your_access_token>" \
--header "Content-Type: application/json" \
--data '{
- "name": "master",
+ "name": "main",
"allowed_to_push": [{"access_level": 30}],
"allowed_to_merge": [{
"access_level": 30
@@ -286,7 +286,7 @@ Example response:
```json
{
"id": 5,
- "name": "master",
+ "name": "main",
"push_access_levels": [
{
"id": 1,
@@ -348,7 +348,7 @@ Example response:
```json
{
- "name": "master",
+ "name": "main",
"push_access_levels": [
{
"id": 12,
@@ -406,14 +406,14 @@ To delete:
curl --header 'Content-Type: application/json' --request PATCH \
--data '{"allowed_to_push": [{access_level: 40}]}' \
--header "PRIVATE-TOKEN: <your_access_token>" \
- "https://gitlab.example.com/api/v4/groups/22034114/protected_branches/master"
+ "https://gitlab.example.com/api/v4/groups/22034114/protected_branches/main"
```
Example response:
```json
{
- "name": "master",
+ "name": "main",
"push_access_levels": [
{
"id": 12,
@@ -431,14 +431,14 @@ Example response:
```shell
curl --header 'Content-Type: application/json' --request PATCH \
--data '{"allowed_to_push": [{"id": 12, "access_level": 0}]' \
- --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/22034114/protected_branches/master"
+ --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/22034114/protected_branches/main"
```
Example response:
```json
{
- "name": "master",
+ "name": "main",
"push_access_levels": [
{
"id": 12,
@@ -456,14 +456,14 @@ Example response:
```shell
curl --header 'Content-Type: application/json' --request PATCH \
--data '{"allowed_to_push": [{"id": 12, "_destroy": true}]}' \
- --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/22034114/protected_branches/master"
+ --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/22034114/protected_branches/main"
```
Example response:
```json
{
- "name": "master",
+ "name": "main",
"push_access_levels": []
}
```