diff options
author | Hannes Rosenögger <123haynes@gmail.com> | 2015-01-21 23:59:30 +0100 |
---|---|---|
committer | Hannes Rosenögger <123haynes@gmail.com> | 2015-01-22 12:14:53 +0100 |
commit | e03f1af00a513a15085a69374a84a2f2df4689d1 (patch) | |
tree | d3c41839eeed87186fc68d936edb0742daa67f00 /doc | |
parent | 9d271538a8e9ddff892a084e5c8a881bf2fdb0b0 (diff) | |
download | gitlab-ce-e03f1af00a513a15085a69374a84a2f2df4689d1.tar.gz |
Fix the test and add documentation for the "per-milestone issues API call"
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/milestones.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/api/milestones.md b/doc/api/milestones.md index 2f525327504..d48b3bcce8a 100644 --- a/doc/api/milestones.md +++ b/doc/api/milestones.md @@ -72,3 +72,16 @@ Parameters: - `description` (optional) - The description of a milestone - `due_date` (optional) - The due date of the milestone - `state_event` (optional) - The state event of the milestone (close|activate) + +## Get all issues assigned to a single milestone + +Gets all issues assigned to a single project milestone. + +``` +GET /projects/:id/milestones/:milestone_id/issues +``` + +Parameters: + +- `id` (required) - The ID of a project +- `milestone_id` (required) - The ID of a project milestone |