gitlab-org--gitlab-foss/lib/gitlab/tracking/destinations/base.rb

14 lines
313 B
Ruby

# 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