d16709e8e7
* bunch of code climate fixes * more
13 lines
302 B
Ruby
13 lines
302 B
Ruby
# frozen_string_literal: true
|
|
module Events
|
|
class ConversationStartedOnMap < Event
|
|
# after_create :notify_users!
|
|
|
|
def self.publish!(map, user)
|
|
create!(kind: 'conversation_started_on_map',
|
|
eventable: map,
|
|
map: map,
|
|
user: user)
|
|
end
|
|
end
|
|
end
|