diff options
author | Rémy Coutable <remy@rymai.me> | 2017-02-22 15:49:51 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-02-22 15:49:51 +0000 |
commit | 91335c59fd3a0a1dc5cd83835d086ac1699316b9 (patch) | |
tree | 6a7e1af66666c3e98b81b7945a382dabc8d7ba6c /doc | |
parent | 765d509a5bd0548961ea7ab1d86bf9302b5298b1 (diff) | |
parent | d3425933dddf4e849199c06dd3ce00c212d0c6da (diff) | |
download | gitlab-ce-91335c59fd3a0a1dc5cd83835d086ac1699316b9.tar.gz |
Merge branch '27032-add-a-house-keeping-api-call' into 'master'
Add housekeeping endpoint for Projects API
Closes #27032
See merge request !9421
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/projects.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/api/projects.md b/doc/api/projects.md index e9ef03a0c0c..872f570e0f6 100644 --- a/doc/api/projects.md +++ b/doc/api/projects.md @@ -1195,3 +1195,17 @@ Parameters: | `query` | string | yes | A string contained in the project name | | `order_by` | string | no | Return requests ordered by `id`, `name`, `created_at` or `last_activity_at` fields | | `sort` | string | no | Return requests sorted in `asc` or `desc` order | + +## Start the Housekeeping task for a Project + +>**Note:** This feature was introduced in GitLab 9.0 + +``` +POST /projects/:id/housekeeping +``` + +Parameters: + +| Attribute | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME | |