mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-13 14:44:59 +00:00
9 lines
178 B
Ruby
9 lines
178 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab::UsageDataCounters
|
|
class SourceCodeCounter < BaseCounter
|
|
KNOWN_EVENTS = %w[pushes].freeze
|
|
PREFIX = 'source_code'
|
|
end
|
|
end
|