gitlab-org--gitlab-foss/lib/gitlab/cycle_analytics/stage_summary.rb

27 lines
710 B
Ruby

# frozen_string_literal: true
module Gitlab
module CycleAnalytics
class StageSummary
def initialize(project, from:, to: nil, current_user:)
@project = project
@from = from
@to = to
@current_user = current_user
end
def data
[serialize(Summary::Issue.new(project: @project, from: @from, to: @to, current_user: @current_user)),
serialize(Summary::Commit.new(project: @project, from: @from, to: @to)),
serialize(Summary::Deploy.new(project: @project, from: @from, to: @to))]
end
private
def serialize(summary_object)
AnalyticsSummarySerializer.new.represent(summary_object)
end
end
end
end