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 '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