metamaps--metamaps/app/models/events/new_mapping.rb
2016-06-30 12:03:31 +08:00

10 lines
297 B
Ruby

class Events::NewMapping < Event
# after_create :notify_users!
def self.publish!(mapping, user)
create!(kind: mapping.mappable_type == 'Topic' ? 'topic_added_to_map' : 'synapse_added_to_map',
eventable: mapping,
map: mapping.map,
user: user)
end
end