gitlab-org--gitlab-foss/lib/gitlab/usage_data_counters/diffs_counter.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
190 B
Ruby
Raw Normal View History

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