mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
15 lines
239 B
Ruby
15 lines
239 B
Ruby
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
|
|
name.to_s.gsub('.', '_')
|
|
end
|
|
end
|