summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlair Lunceford <blunceford@gitlab.com>2019-03-21 17:34:50 +0000
committerBlair Lunceford <blunceford@gitlab.com>2019-03-21 17:34:50 +0000
commit41cc392deb821fdbf327d9867e6990e909949129 (patch)
tree0eb0648a14d160bd96e155807a61cdbacbedfdfb
parent7d3c5d882c1ddb7a78241e326996f30d67fce4b8 (diff)
downloadgitlab-ce-41cc392deb821fdbf327d9867e6990e909949129.tar.gz
Update JIRA service API docpatch-48
-rw-r--r--doc/api/services.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/services.md b/doc/api/services.md
index 03d0a80aa64..7fa6facaa95 100644
--- a/doc/api/services.md
+++ b/doc/api/services.md
@@ -506,7 +506,7 @@ GET /projects/:id/services/jira
Set JIRA service for a project.
> Starting with GitLab 8.14, `api_url`, `issues_url`, `new_issue_url` and
-> `project_url` are replaced by `project_key`, `url`. If you are using an
+> `project_url` are replaced by `url`. If you are using an
> older version, [follow this documentation][old-jira-api].
```
@@ -518,7 +518,7 @@ Parameters:
| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `url` | string | yes | The URL to the JIRA project which is being linked to this GitLab project. For example, `https://jira.example.com`. |
-| `project_key` | string | yes | The short identifier for your JIRA project, all uppercase, e.g., `PROJ`. |
+| `api_url` | string | no | The base URL to the JIRA instance API. Web URL value will be used if not set. For example, `https://jira-api.example.com`. |
| `username` | string | yes | The username of the user created to be used with GitLab/JIRA. |
| `password` | string | yes | The password of the user created to be used with GitLab/JIRA. |
| `active` | boolean | no | Activates or deactivates the service. Defaults to false (deactivated). |