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

designs_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: 07e1963f9fb35fdc7917bb37caa3abaadf7be3c5 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module Gitlab::UsageDataCounters
  class DesignsCounter < BaseCounter
    KNOWN_EVENTS = %w[create update delete].freeze
    PREFIX = 'design_management_designs'
  end
end