summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/production_event_fetcher.rb
blob: 8843ab2bcb9d309c4d17ae77a36e834162d7a7e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

module Gitlab
  module CycleAnalytics
    class ProductionEventFetcher < BaseEventFetcher
      include ProductionHelper

      def initialize(*args)
        @projections = [issue_table[:title],
                        issue_table[:iid],
                        issue_table[:id],
                        issue_table[:created_at],
                        issue_table[:author_id],
                        routes_table[:path]]

        super(*args)
      end

      private

      def serialize(event)
        AnalyticsIssueSerializer.new(serialization_context).represent(event)
      end

      def allowed_ids_finder_class
        IssuesFinder
      end
    end
  end
end