Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2017-02-22 18:49:51 +0300
committerRémy Coutable <remy@rymai.me>2017-02-22 18:49:51 +0300
commit91335c59fd3a0a1dc5cd83835d086ac1699316b9 (patch)
tree6a7e1af66666c3e98b81b7945a382dabc8d7ba6c /doc
parent765d509a5bd0548961ea7ab1d86bf9302b5298b1 (diff)
parentd3425933dddf4e849199c06dd3ce00c212d0c6da (diff)
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.md14
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 |