summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Fletcher <mark@gitlab.com>2017-12-20 17:35:58 +0000
committerMark Fletcher <mark@gitlab.com>2017-12-22 12:18:05 +0000
commitb1941789f5c9ce0d03d69564aba19f382d43d92f (patch)
tree35ab5bd43b3b484f4a8f50c284c167d4ddb32c58
parent0d7f9762a71c0f4118ea284b6843f7d79b20000b (diff)
downloadgitlab-ce-b1941789f5c9ce0d03d69564aba19f382d43d92f.tar.gz
Add Bugzilla Service API docs
-rw-r--r--doc/api/services.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/api/services.md b/doc/api/services.md
index 7adfabb4b30..378fd223ad2 100644
--- a/doc/api/services.md
+++ b/doc/api/services.md
@@ -113,6 +113,44 @@ Get Atlassian Bamboo CI service settings for a project.
GET /projects/:id/services/bamboo
```
+## Bugzilla
+
+Bugzilla Issue Tracker
+
+### Create/Edit Buildkite service
+
+Set Bugzilla service for a project.
+
+```
+PUT /projects/:id/services/bugzilla
+```
+
+Parameters:
+
+| Parameter | Type | Required | Description |
+| --------- | ---- | -------- | ----------- |
+| `new_issue_url` | string | true | New Issue url |
+| `issues_url` | string | true | Issue url |
+| `project_url` | string | true | Project url |
+| `description` | string | false | Description |
+| `title` | string | false | Title |
+
+### Delete Bugzilla Service
+
+Delete Bugzilla service for a project.
+
+```
+DELETE /projects/:id/services/bugzilla
+```
+
+### Get Bugzilla Service Settings
+
+Get Bugzilla service settings for a project.
+
+```
+GET /projects/:id/services/bugzilla
+```
+
## Buildkite
Continuous integration and deployments