Commit f07cbd18 authored by Achilleas Pipinellis's avatar Achilleas Pipinellis Committed by Evan Read

Port some EE API docs to CE

The following EE files had small differences with their CE counterpart
so they have been ported to CE:

- doc/api/boards.md
- doc/api/discussions.md
- doc/api/notes.md
- doc/api/resource_label_events.md
- doc/api/services.md
parent b2d79755
......@@ -211,7 +211,7 @@ Example response:
## 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.
......@@ -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 |
| `board_id` | integer | yes | The ID of a board |
| `label_id` | integer | no | The ID of a label |
| `assignee_id` | integer | no | The ID of a user |
| `milestone_id` | integer | no | The ID of a milestone |
| `assignee_id` **[PREMIUM]** | integer | no | The ID of a user |
| `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.
Check the [Issue Board docs](../user/project/issue_board.md) for more
information regarding the required license for each list type.
Check the [Issue Board docs](../user/project/issue_board.md#summary-of-features-per-tier)
for more information regarding the required license for each list type.
```bash
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 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).
......
# 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).
......
......@@ -1101,7 +1101,7 @@ Get JetBrains TeamCity CI service settings for a project.
GET /projects/:id/services/teamcity
```
## Jenkins CI
## Jenkins CI **[STARTER]**
A continuous integration and build server
......@@ -1109,7 +1109,6 @@ A continuous integration and build server
Set Jenkins CI service for a project.
```
PUT /projects/:id/services/jenkins
```
......@@ -1137,7 +1136,6 @@ Get Jenkins CI service settings for a project.
GET /projects/:id/services/jenkins
```
## Jenkins CI (Deprecated) Service
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