debian-mirror-gitlab/lib/gitlab/tracking/destinations/base.rb
2021-01-29 00:20:46 +05:30

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