Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cycle_analytics_counter.rb « usage_data_counters « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ff4296ef65322cd36a94d3468aa97cf2bc1edb4 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module Gitlab::UsageDataCounters
  class CycleAnalyticsCounter < BaseCounter
    KNOWN_EVENTS = %w[views].freeze
    PREFIX = 'cycle_analytics'
  end
end