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>2023-11-14 18:09:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-14 18:09:52 +0300
commit15c1cc886c5785d49f2a6dae064a1e8290f59f46 (patch)
treeda963cc8eef2a57f70ca325430b59f91191804ba /app/controllers
parent3a19c55d3a1dda9e0ea041d910bf31d1ddda7acd (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/import/bulk_imports_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/import/bulk_imports_controller.rb b/app/controllers/import/bulk_imports_controller.rb
index bc425323d6f..e211ea70a56 100644
--- a/app/controllers/import/bulk_imports_controller.rb
+++ b/app/controllers/import/bulk_imports_controller.rb
@@ -76,7 +76,7 @@ class Import::BulkImportsController < ApplicationController
def realtime_changes
Gitlab::PollingInterval.set_header(response, interval: POLLING_INTERVAL)
- render json: current_user_bulk_imports.to_json(only: [:id], methods: [:status_name])
+ render json: current_user_bulk_imports.to_json(only: [:id], methods: [:status_name, :has_failures])
end
private