2016-12-14 15:08:59 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
class Events::TopicMovedOnMap < Event
|
|
|
|
# after_create :notify_users!
|
|
|
|
|
2016-12-15 12:44:01 +00:00
|
|
|
def self.publish!(topic, map, user, meta)
|
2016-12-14 15:08:59 +00:00
|
|
|
create!(kind: 'topic_moved_on_map',
|
2016-12-15 12:44:01 +00:00
|
|
|
eventable: topic,
|
|
|
|
map: map,
|
2016-12-14 15:08:59 +00:00
|
|
|
user: user,
|
|
|
|
meta: meta)
|
|
|
|
end
|
|
|
|
end
|