6c5e948013
Add project path to sql query to build proper path
29 lines
645 B
Ruby
29 lines
645 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module CycleAnalytics
|
|
class PlanEventFetcher < BaseEventFetcher
|
|
include PlanHelper
|
|
|
|
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(serialization_context).represent(event)
|
|
end
|
|
|
|
def allowed_ids_finder_class
|
|
IssuesFinder
|
|
end
|
|
end
|
|
end
|
|
end
|