7e6f6e1603
Enables frozens string for the following: * lib/gitlab/conflict/**/*.rb * lib/gitlab/cross_project_access/**/*.rb * lib/gitlab/cycle_analytics/**/*.rb * lib/gitlab/data_builder/**/*.rb * lib/gitlab/database/**/*.rb * lib/gitlab/dependency_linker/**/*.rb * lib/gitlab/diff/**/*.rb * lib/gitlab/downtime_check/**/*.rb * lib/gitlab/email/**/*.rb * lib/gitlab/etag_caching/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
29 lines
695 B
Ruby
29 lines
695 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module CycleAnalytics
|
|
class CodeEventFetcher < BaseEventFetcher
|
|
def initialize(*args)
|
|
@projections = [mr_table[:title],
|
|
mr_table[:iid],
|
|
mr_table[:id],
|
|
mr_table[:created_at],
|
|
mr_table[:state],
|
|
mr_table[:author_id]]
|
|
@order = mr_table[:created_at]
|
|
|
|
super(*args)
|
|
end
|
|
|
|
private
|
|
|
|
def serialize(event)
|
|
AnalyticsMergeRequestSerializer.new(project: @project).represent(event)
|
|
end
|
|
|
|
def allowed_ids_finder_class
|
|
MergeRequestsFinder
|
|
end
|
|
end
|
|
end
|
|
end
|