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/serializers/pipeline_entity.rb')
-rw-r--r--app/serializers/pipeline_entity.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/serializers/pipeline_entity.rb b/app/serializers/pipeline_entity.rb
index 8333a0bb863..de1e07139ad 100644
--- a/app/serializers/pipeline_entity.rb
+++ b/app/serializers/pipeline_entity.rb
@@ -36,7 +36,7 @@ class PipelineEntity < Grape::Entity
expose :details do
expose :detailed_status, as: :status, with: DetailedStatusEntity
- expose :ordered_stages, as: :stages, using: StageEntity
+ expose :stages, using: StageEntity
expose :duration
expose :finished_at
expose :name
@@ -85,8 +85,8 @@ class PipelineEntity < Grape::Entity
pipeline.failed_builds
end
- expose :tests_total_count, if: -> (pipeline, _) { Feature.enabled?(:build_report_summary, pipeline.project) } do |pipeline|
- pipeline.test_report_summary.total_count
+ expose :tests_total_count do |pipeline|
+ pipeline.test_report_summary.total[:count]
end
private