Class: Gitlab::Tracking::Destinations::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/gitlab/tracking/destinations/base.rb

Direct Known Subclasses

Snowplow

Instance Method Summary collapse

Instance Method Details

#event(category, action, label: nil, property: nil, value: nil, context: nil) ⇒ Object

Raises:

  • (NotImplementedError)


7
8
9
# File 'lib/gitlab/tracking/destinations/base.rb', line 7

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