18 lines
446 B
Ruby
18 lines
446 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
|
|
|
|
private
|
|
|
|
#def notify_users!
|
|
# unless comment_vote.user == comment_vote.comment_user
|
|
# notify!(comment_vote.comment_user)
|
|
# end
|
|
#end
|
|
end
|