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

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

module Gitlab
  module UsageDataCounters
    class GuestPackageEventCounter < BaseCounter
      KNOWN_EVENTS_PATH = File.expand_path('counter_events/guest_package_events.yml', __dir__)
      KNOWN_EVENTS = YAML.safe_load(File.read(KNOWN_EVENTS_PATH)).freeze
      PREFIX = 'package_guest'
    end
  end
end