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:
authorGitLab Bot <gitlab-bot@gitlab.com>2024-01-23 15:07:23 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-23 15:07:23 +0300
commit84b507d17bad7636a02ae2e9f59e8eb219ad7e15 (patch)
treefb544e6ae2990ec9b7ccd21c7add91a89623f4de /doc/api/bulk_imports.md
parent5831f05b4ce3e5af23c98a8c9495419509df6d62 (diff)
Add latest changes from gitlab-org/gitlab@master
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
+ }
+ }
}
]
```