metamaps--metamaps/app/models/events/topic_added_to_map.rb

13 lines
295 B
Ruby
Raw Normal View History

2016-12-14 15:08:59 +00:00
# frozen_string_literal: true
class Events::TopicAddedToMap < 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_added_to_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