ca6cfde588
This change lays the foundation for customizable cycle analytics stages. The main reason for the change is to extract the event definitions to separate objects (start_event, end_event) so that it could be easily customized later on.
9 lines
156 B
Ruby
9 lines
156 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Analytics
|
|
module CycleAnalytics
|
|
def self.table_name_prefix
|
|
'analytics_cycle_analytics_'
|
|
end
|
|
end
|
|
end
|