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
path: root/doc/api
diff options
context:
space:
mode:
authorMark Fletcher <mark@gitlab.com>2017-12-20 20:35:58 +0300
committerMark Fletcher <mark@gitlab.com>2017-12-22 15:18:05 +0300
commitb1941789f5c9ce0d03d69564aba19f382d43d92f (patch)
tree35ab5bd43b3b484f4a8f50c284c167d4ddb32c58 /doc/api
parent0d7f9762a71c0f4118ea284b6843f7d79b20000b (diff)
Add Bugzilla Service API docs
Diffstat (limited to 'doc/api')
-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