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

10 lines
182 B
Ruby
Raw Normal View History

module Gitlab
module CycleAnalytics
module Event
def self.[](stage_name)
2016-12-02 11:09:29 -05:00
CycleAnalytics.const_get("#{stage_name.to_s.camelize}Event")
end
end
end
end