Chatwoot/lib/events/base.rb

15 lines
239 B
Ruby
Raw Normal View History

class Events::Base
attr_accessor :data
attr_reader :name, :timestamp
def initialize(name, timestamp, data)
@name = name
@data = data
@timestamp = timestamp
end
def method_name
2019-10-20 08:47:26 +00:00
name.to_s.gsub('.', '_')
end
end