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

diffs_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: b06c7e26f54035afb1424f2616f490b2662eaa09 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Gitlab
  module UsageDataCounters
    class DiffsCounter < BaseCounter
      KNOWN_EVENTS = %w[searches].freeze
      PREFIX = 'diff'
    end
  end
end