summaryrefslogtreecommitdiff
path: root/lib/gitlab/tracking/destinations/base.rb
blob: 00e92e0bd573ceaf7796eda97fadc80aa77d265d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module Tracking
    module Destinations
      class Base
        def event(category, action, label: nil, property: nil, value: nil, context: nil)
          raise NotImplementedError, "#{self} does not implement #{__method__}"
        end
      end
    end
  end
end