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

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