diff options
author | Yauhen Kotau <yauhen.kotau@psa-software.com> | 2019-02-20 20:54:47 +0300 |
---|---|---|
committer | Yauhen Kotau <yauhen.kotau@psa-software.com> | 2019-02-20 20:54:47 +0300 |
commit | dd6fbbc44d2807b93d609d304db2c4da229297dc (patch) | |
tree | c46fe5063e31f5519cfffd245623c95ef8ef8d32 /doc/api | |
parent | 5011d83cb14b5ffae0060b3e7309a24eca80a1b2 (diff) | |
download | gitlab-ce-dd6fbbc44d2807b93d609d304db2c4da229297dc.tar.gz |
API documentation, changelog and additional tests for YouTrack integration service
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/services.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/api/services.md b/doc/api/services.md index 5d5aa3e5b3e..7efd86dafd6 100644 --- a/doc/api/services.md +++ b/doc/api/services.md @@ -1101,3 +1101,39 @@ GET /projects/:id/services/mock-ci ``` [11435]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11435 + +## YouTrack + +YouTrack issue tracker + +### Create/Edit YouTrack service + +Set YouTrack service for a project. + +``` +PUT /projects/:id/services/youtrack +``` + +Parameters: + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `issues_url` | string | true | Issue url | +| `project_url` | string | true | Project url | +| `description` | string | false | Description | + +### Delete YouTrack Service + +Delete YouTrack service for a project. + +``` +DELETE /projects/:id/services/youtrack +``` + +### Get YouTrack Service Settings + +Get YouTrack service settings for a project. + +``` +GET /projects/:id/services/youtrack +``` |