diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2017-02-22 17:32:41 +0000 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2017-02-22 17:32:41 +0000 |
commit | 931db7963ee9fa145d8fe2fb5eea209215227db7 (patch) | |
tree | a85ddfcf479ea09237c54a6ce9b0557925f583ff /doc/api/projects.md | |
parent | 0b402e11e355dc8d834fbc139f4bca810a9f766e (diff) | |
parent | 33e4294fc884c7bd2a7fb86baf4731daf87db7bb (diff) | |
download | gitlab-ce-931db7963ee9fa145d8fe2fb5eea209215227db7.tar.gz |
Merge branch 'master' into 'api-notes-entity-fields'api-notes-entity-fields
# Conflicts:
# doc/api/v3_to_v4.md
Diffstat (limited to 'doc/api/projects.md')
-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 7fe36d27804..1a8c0ae758f 100644 --- a/doc/api/projects.md +++ b/doc/api/projects.md @@ -1193,3 +1193,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 | |