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
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/bulk_imports.md')
-rw-r--r--doc/api/bulk_imports.md28
1 files changed, 26 insertions, 2 deletions
diff --git a/doc/api/bulk_imports.md b/doc/api/bulk_imports.md
index bebfdb80a35..6419c56ce34 100644
--- a/doc/api/bulk_imports.md
+++ b/doc/api/bulk_imports.md
@@ -152,7 +152,19 @@ curl --request GET --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab
"project_id": null,
"created_at": "2021-06-18T09:47:37.390Z",
"updated_at": "2021-06-18T09:47:51.867Z",
- "failures": []
+ "failures": [],
+ "stats": {
+ "labels": {
+ "source": 10,
+ "fetched": 10,
+ "imported": 10
+ },
+ "milestones": {
+ "source": 10,
+ "fetched": 10,
+ "imported": 10
+ }
+ }
},
{
"id": 2,
@@ -233,7 +245,19 @@ curl --request GET --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab
"status": "finished",
"source_type": "gitlab",
"created_at": "2021-06-18T09:45:55.358Z",
- "updated_at": "2021-06-18T09:46:27.003Z"
+ "updated_at": "2021-06-18T09:46:27.003Z",
+ "stats": {
+ "labels": {
+ "source": 10,
+ "fetched": 10,
+ "imported": 10
+ },
+ "milestones": {
+ "source": 10,
+ "fetched": 10,
+ "imported": 10
+ }
+ }
}
]
```