mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-10 01:31:45 +00:00
9 lines
207 B
Ruby
9 lines
207 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab::UsageDataCounters
|
|
class ServiceUsageDataCounter < BaseCounter
|
|
KNOWN_EVENTS = %w[download_payload_click].freeze
|
|
PREFIX = 'service_usage_data'
|
|
end
|
|
end
|