Commit d66ef6e7 authored by Evan Read's avatar Evan Read

Merge branch 'docs/api-single-codebase-clean-port-ee' into 'master'

(EE port) Port some EE API docs to CE

See merge request gitlab-org/gitlab-ee!12962
parents b2d79755 f07cbd18
...@@ -211,7 +211,7 @@ Example response: ...@@ -211,7 +211,7 @@ Example response:
## Update a board **[STARTER]** ## Update a board **[STARTER]**
> [Introduced][ee-5954] in GitLab 11.1. > [Introduced][ee-5954] in [GitLab Starter](https://about.gitlab.com/pricing/) 11.1.
Updates a board. Updates a board.
...@@ -405,13 +405,14 @@ POST /projects/:id/boards/:board_id/lists ...@@ -405,13 +405,14 @@ POST /projects/:id/boards/:board_id/lists
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user | | `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
| `board_id` | integer | yes | The ID of a board | | `board_id` | integer | yes | The ID of a board |
| `label_id` | integer | no | The ID of a label | | `label_id` | integer | no | The ID of a label |
| `assignee_id` | integer | no | The ID of a user | | `assignee_id` **[PREMIUM]** | integer | no | The ID of a user |
| `milestone_id` | integer | no | The ID of a milestone | | `milestone_id` **[PREMIUM]** | integer | no | The ID of a milestone |
>**Note**: Label, assignee and milestone arguments are mutually exclusive, NOTE: **Note**:
Label, assignee and milestone arguments are mutually exclusive,
that is, only one of them are accepted in a request. that is, only one of them are accepted in a request.
Check the [Issue Board docs](../user/project/issue_board.md) for more Check the [Issue Board docs](../user/project/issue_board.md#summary-of-features-per-tier)
information regarding the required license for each list type. for more information regarding the required license for each list type.
```bash ```bash
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/boards/1/lists?label_id=5 curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/boards/1/lists?label_id=5
......
# Discussions API # Discussions API
Discussions are set of related notes on snippets, issues, epics, merge requests or commits. Discussions are a set of related notes on:
- Snippets
- Issues
- Epics **[ULTIMATE]**
- Merge requests
- Commits
This includes system notes, which are notes about changes to the object (for example, when a milestone changes, there will be a corresponding system note). Label notes are not part of this API, but recorded as separate events in [resource label events](resource_label_events.md). This includes system notes, which are notes about changes to the object (for example, when a milestone changes, there will be a corresponding system note). Label notes are not part of this API, but recorded as separate events in [resource label events](resource_label_events.md).
......
# Notes API # Notes API
Notes are comments on snippets, issues, merge requests or epics. Notes are comments on:
- Snippets
- Issues
- Merge requests
- Epics **[ULTIMATE]**
This includes system notes, which are notes about changes to the object (for example, when a milestone changes, there will be a corresponding system note). Label notes are not part of this API, but recorded as separate events in [resource label events](resource_label_events.md). This includes system notes, which are notes about changes to the object (for example, when a milestone changes, there will be a corresponding system note). Label notes are not part of this API, but recorded as separate events in [resource label events](resource_label_events.md).
......
...@@ -1101,7 +1101,7 @@ Get JetBrains TeamCity CI service settings for a project. ...@@ -1101,7 +1101,7 @@ Get JetBrains TeamCity CI service settings for a project.
GET /projects/:id/services/teamcity GET /projects/:id/services/teamcity
``` ```
## Jenkins CI ## Jenkins CI **[STARTER]**
A continuous integration and build server A continuous integration and build server
...@@ -1109,7 +1109,6 @@ A continuous integration and build server ...@@ -1109,7 +1109,6 @@ A continuous integration and build server
Set Jenkins CI service for a project. Set Jenkins CI service for a project.
``` ```
PUT /projects/:id/services/jenkins PUT /projects/:id/services/jenkins
``` ```
...@@ -1137,7 +1136,6 @@ Get Jenkins CI service settings for a project. ...@@ -1137,7 +1136,6 @@ Get Jenkins CI service settings for a project.
GET /projects/:id/services/jenkins GET /projects/:id/services/jenkins
``` ```
## Jenkins CI (Deprecated) Service ## Jenkins CI (Deprecated) Service
A continuous integration and build server A continuous integration and build server
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment