debian-mirror-gitlab/lib/gitlab/cycle_analytics/plan_event_fetcher.rb

30 lines
645 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Gitlab
module CycleAnalytics
class PlanEventFetcher < BaseEventFetcher
2019-09-04 21:01:54 +05:30
include PlanHelper
2017-08-17 22:00:37 +05:30
def initialize(*args)
2019-09-04 21:01:54 +05:30
@projections = [issue_table[:title],
issue_table[:iid],
issue_table[:id],
issue_table[:created_at],
issue_table[:author_id]]
2017-08-17 22:00:37 +05:30
super(*args)
end
private
def serialize(event)
2019-10-12 21:52:04 +05:30
AnalyticsIssueSerializer.new(serialization_context).represent(event)
2017-08-17 22:00:37 +05:30
end
2019-09-04 21:01:54 +05:30
def allowed_ids_finder_class
IssuesFinder
2017-08-17 22:00:37 +05:30
end
end
end
end