gitlab-org--gitlab-foss/lib/gitlab/cycle_analytics/event.rb

10 lines
189 B
Ruby
Raw Normal View History

module Gitlab
module CycleAnalytics
module Event
def self.[](stage_name)
CycleAnalytics.const_get("#{stage_name.to_s.camelize}EventFetcher")
end
end
end
end