debian-mirror-gitlab/lib/gitlab/usage_data_counters/source_code_counter.rb

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

9 lines
178 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
module Gitlab::UsageDataCounters
class SourceCodeCounter < BaseCounter
KNOWN_EVENTS = %w[pushes].freeze
PREFIX = 'source_code'
end
end