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

19 lines
430 B
Ruby
Raw Normal View History

2015-10-01 02:30:53 +00:00
class Events::NewMapping < Event
#after_create :notify_users!
def self.publish!(mapping, user)
create!(kind: mapping.topic_id ? "topic_added_to_map" : "synapse_added_to_map",
eventable: mapping,
map: mapping.map,
user: user)
end
private
#def notify_users!
# unless comment_vote.user == comment_vote.comment_user
# notify!(comment_vote.comment_user)
# end
#end
end