diff options
author | Dmitriy Zaporozhets <dzaporozhets@gitlab.com> | 2014-10-31 09:38:24 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dzaporozhets@gitlab.com> | 2014-10-31 09:38:24 +0000 |
commit | aa75a755ee8767c66d16fe93a48dd3f9e24a4784 (patch) | |
tree | a42879302e0cfd0a109a2f8d032f5727b7de2a03 /doc | |
parent | 5a699090cde818294fca93d2793dd6195c0a7c2d (diff) | |
parent | 20e04d9f398b1f4221fa9f5de529dea7c2f0f9c1 (diff) | |
download | gitlab-ce-aa75a755ee8767c66d16fe93a48dd3f9e24a4784.tar.gz |
Merge branch 'api-delete-branch-json' into 'master'
Api delete branch json
Fixes gitlab/gitlabhq#1478
See merge request !1233
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/branches.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/api/branches.md b/doc/api/branches.md index 74386615545..319f0b47386 100644 --- a/doc/api/branches.md +++ b/doc/api/branches.md @@ -211,3 +211,11 @@ Parameters: It return 200 if succeed, 404 if the branch to be deleted does not exist or 400 for other reasons. In case of an error, an explaining message is provided. + +Success response: + +```json +{ + "branch_name": "my-removed-branch" +} +``` |