module Gitlab
  module CycleAnalytics
    class IssueEventFetcher < BaseEventFetcher
      def initialize(*args)
        @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)
      end

      def allowed_ids_finder_class
        IssuesFinder
      end
    end
  end
end