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

wiki_page_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: 9cfe0be5babaf1591b307c2ee55cd88282c8ef1b (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

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