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

21 lines
390 B
Ruby
Raw Normal View History

module Gitlab
module CycleAnalytics
class CodeStage < BaseStage
2016-12-02 16:09:29 +00:00
def initialize(*args)
@start_time_attrs = issue_metrics_table[:first_mentioned_in_commit_at]
@end_time_attrs = mr_table[:created_at]
super(*args)
end
2016-12-02 16:09:29 +00:00
def stage
:code
end
def description
"Time until first merge request"
end
end
end
end