Commit 8639ea1b authored by James Lopez's avatar James Lopez

fix bad merge

parent fc6f8f20
...@@ -12,15 +12,17 @@ class CycleAnalytics ...@@ -12,15 +12,17 @@ class CycleAnalytics
def method_missing(method_sym, *arguments, &block) def method_missing(method_sym, *arguments, &block)
classify_stage(method_sym).new(project: @project, options: @options, stage: method_sym) classify_stage(method_sym).new(project: @project, options: @options, stage: method_sym)
end
def permissions(user:) def permissions(user:)
Gitlab::CycleAnalytics::Permissions.get(user: user, project: @project) Gitlab::CycleAnalytics::Permissions.get(user: user, project: @project)
end end
def issue def issue
@fetcher.calculate_metric(:issue, @fetcher.calculate_metric(:issue,
Issue.arel_table[:created_at], Issue.arel_table[:created_at],
[Issue::Metrics.arel_table[:first_associated_with_milestone_at], [Issue::Metrics.arel_table[:first_associated_with_milestone_at],
Issue::Metrics.arel_table[:first_added_to_board_at]]) Issue::Metrics.arel_table[:first_added_to_board_at]])
end end
def classify_stage(method_sym) def classify_stage(method_sym)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment