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:
authorRobert Schilling <rschilling@student.tugraz.at>2016-07-19 11:36:18 +0300
committerRobert Schilling <rschilling@student.tugraz.at>2016-07-19 12:12:03 +0300
commite552b4af26b68a8b4bedc775a128a8ecd59ff689 (patch)
treea579e7051dbf385946056a38525000a441c405ff /doc/api/branches.md
parent54d26c89f66abb2bfec7403fd6b3ed7700e73766 (diff)
API: Expose 'developers_can_merge' for branches
Diffstat (limited to 'doc/api/branches.md')
-rw-r--r--doc/api/branches.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/doc/api/branches.md b/doc/api/branches.md
index e5a1e12ffb9..dbe8306c66f 100644
--- a/doc/api/branches.md
+++ b/doc/api/branches.md
@@ -24,6 +24,7 @@ Example response:
"name": "master",
"protected": true,
"developers_can_push": false,
+ "developers_can_merge": false,
"commit": {
"author_email": "john@example.com",
"author_name": "John Smith",
@@ -66,6 +67,7 @@ Example response:
"name": "master",
"protected": true,
"developers_can_push": false,
+ "developers_can_merge": false,
"commit": {
"author_email": "john@example.com",
"author_name": "John Smith",
@@ -93,7 +95,7 @@ PUT /projects/:id/repository/branches/:branch/protect
```
```bash
-curl -X PUT -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/projects/5/repository/branches/master/protect?developers_can_push=true
+curl -X PUT -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/projects/5/repository/branches/master/protect?developers_can_push=true&developers_can_merge=true
```
| Attribute | Type | Required | Description |
@@ -101,6 +103,7 @@ curl -X PUT -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/
| `id` | integer | yes | The ID of a project |
| `branch` | string | yes | The name of the branch |
| `developers_can_push` | boolean | no | Flag if developers can push to the branch |
+| `developers_can_merge` | boolean | no | Flag if developers can merge to the branch |
Example response:
@@ -121,7 +124,8 @@ Example response:
},
"name": "master",
"protected": true,
- "developers_can_push": true
+ "developers_can_push": true,
+ "developers_can_merge": true
}
```
@@ -163,7 +167,8 @@ Example response:
},
"name": "master",
"protected": false,
- "developers_can_push": false
+ "developers_can_push": false,
+ "developers_can_merge": false
}
```
@@ -202,7 +207,8 @@ Example response:
},
"name": "newbranch",
"protected": false,
- "developers_can_push": false
+ "developers_can_push": false,
+ "developers_can_merge": false
}
```