26 lines
704 B
Ruby
26 lines
704 B
Ruby
module Gitlab
|
|
module CycleAnalytics
|
|
class ProductionEvent < BaseEvent
|
|
include IssueAllowed
|
|
|
|
def initialize(*args)
|
|
@stage = :production
|
|
@start_time_attrs = issue_table[:created_at]
|
|
@end_time_attrs = mr_metrics_table[:first_deployed_to_production_at]
|
|
@projections = [issue_table[:title],
|
|
issue_table[:iid],
|
|
issue_table[:id],
|
|
issue_table[:created_at],
|
|
issue_table[:author_id]]
|
|
|
|
super(*args)
|
|
end
|
|
|
|
private
|
|
|
|
def serialize(event)
|
|
AnalyticsIssueSerializer.new(project: @project).represent(event).as_json
|
|
end
|
|
end
|
|
end
|
|
end
|