2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
2016-12-14 15:08:59 +00:00
|
|
|
class Events::TopicRemovedFromMap < Event
|
2016-07-26 00:14:23 +00:00
|
|
|
# after_create :notify_users!
|
2016-03-12 23:36:38 +00:00
|
|
|
|
2016-12-15 00:58:10 +00:00
|
|
|
def self.publish!(topic, map, user)
|
2016-12-14 15:08:59 +00:00
|
|
|
create!(kind: 'topic_removed_from_map',
|
2016-12-15 00:58:10 +00:00
|
|
|
eventable: topic,
|
|
|
|
map: map,
|
2016-03-12 23:36:38 +00:00
|
|
|
user: user)
|
|
|
|
end
|
|
|
|
end
|