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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-04-07 00:09:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-04-07 00:09:08 +0300
commit2633d5ef5ed868eccb174c6ff644a3fb8224f990 (patch)
tree14c78507da4b6d3ed343e99b71eb2a1318819def /doc/api/repositories.md
parent0c4a28ded2d4539eafa7ff077c34682227b43292 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/repositories.md')
-rw-r--r--doc/api/repositories.md13
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/api/repositories.md b/doc/api/repositories.md
index 10a5d236e80..ba0a200731b 100644
--- a/doc/api/repositories.md
+++ b/doc/api/repositories.md
@@ -157,12 +157,13 @@ GET /projects/:id/repository/compare
Supported attributes:
-| Attribute | Type | Required | Description |
-| :--------- | :------------- | :------- | :---------- |
-| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user. |
-| `from` | string | yes | The commit SHA or branch name. |
-| `to` | string | yes | The commit SHA or branch name. |
-| `straight` | boolean | no | Comparison method, `true` for direct comparison between `from` and `to` (`from`..`to`), `false` to compare using merge base (`from`...`to`)'. Default is `false`. |
+| Attribute | Type | Required | Description |
+| :--------- | :------------- | :------- | :---------- |
+| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user. |
+| `from` | string | yes | The commit SHA or branch name. |
+| `to` | string | yes | The commit SHA or branch name. |
+| `from_project_id` | integer | no | The ID to compare from |
+| `straight` | boolean | no | Comparison method, `true` for direct comparison between `from` and `to` (`from`..`to`), `false` to compare using merge base (`from`...`to`)'. Default is `false`. |
```plaintext
GET /projects/:id/repository/compare?from=master&to=feature