diff options
author | Mark Fletcher <mark@gitlab.com> | 2017-06-06 18:28:36 +0800 |
---|---|---|
committer | Mark Fletcher <mark@gitlab.com> | 2017-06-06 21:34:10 +0800 |
commit | cff037fd25a8f94af0ccdc179bb7171411dc1369 (patch) | |
tree | 2748c7248ed27cf534077ed74f85d875d9e123d6 /doc/api/projects.md | |
parent | e34e5761042579686fe149f16e7ec107b80224d2 (diff) | |
download | gitlab-ce-cff037fd25a8f94af0ccdc179bb7171411dc1369.tar.gz |
Confirm Project forking behaviour via the API
* It's unclear that the forking operation can still be ongoing
* `import_status` is available in Project Entity to determine status
Diffstat (limited to 'doc/api/projects.md')
-rw-r--r-- | doc/api/projects.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/api/projects.md b/doc/api/projects.md index 70cad8a6025..19dd795b337 100644 --- a/doc/api/projects.md +++ b/doc/api/projects.md @@ -551,6 +551,8 @@ Parameters: Forks a project into the user namespace of the authenticated user or the one provided. +The forking operation for a project is asynchronous and is completed in a background job. The request will return immediately. To determine whether the fork of the project has completed, query the `import_status` for the new project. + ``` POST /projects/:id/fork ``` |