diff options
| author | Filipe Freire <livrofubia@gmail.com> | 2018-01-16 20:19:06 +0000 |
|---|---|---|
| committer | Filipe Freire <livrofubia@gmail.com> | 2018-01-16 20:19:06 +0000 |
| commit | 1ab0cf14c40791c555681c3c15d202b10bdf1bb5 (patch) | |
| tree | 685ef188943a9df186dda6b6ba08f633ca61f728 /doc/api | |
| parent | a1a5d142981379087ca7183d402300a3a3b6ad52 (diff) | |
| parent | 66ae75600af3cdcaf67991b4ae0701d84de2f31a (diff) | |
| download | gitlab-ce-1ab0cf14c40791c555681c3c15d202b10bdf1bb5.tar.gz | |
Merge branch 'master' of https://gitlab.com/filipefreire/gitlab-ce into filipefreire_155
Diffstat (limited to 'doc/api')
| -rw-r--r-- | doc/api/milestones.md | 13 | ||||
| -rw-r--r-- | doc/api/users.md | 4 |
2 files changed, 17 insertions, 0 deletions
diff --git a/doc/api/milestones.md b/doc/api/milestones.md index 84930f0bdc9..d35e940d7b1 100644 --- a/doc/api/milestones.md +++ b/doc/api/milestones.md @@ -93,6 +93,19 @@ Parameters: - `start_date` (optional) - The start date of the milestone - `state_event` (optional) - The state event of the milestone (close|activate) +## Delete project milestone + +Only for user with developer access to the project. + +``` +DELETE /projects/:id/milestones/:milestone_id +``` + +Parameters: + +- `id` (required) - The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user +- `milestone_id` (required) - The ID of the project's milestone + ## Get all issues assigned to a single milestone Gets all issues assigned to a single project milestone. diff --git a/doc/api/users.md b/doc/api/users.md index 478d747a50d..1da6fcf297d 100644 --- a/doc/api/users.md +++ b/doc/api/users.md @@ -415,6 +415,10 @@ GET /user } ``` +## List user projects + +Please refer to the [List of user projects ](projects.md#list-user-projects). + ## List SSH keys Get a list of currently authenticated user's SSH keys. |
