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

19 lines
396 B
Ruby
Raw Normal View History

class Events::ConversationStartedOnMap < Event
2016-06-30 11:42:46 +08:00
# after_create :notify_users!
def self.publish!(map, user)
2016-06-30 11:42:46 +08:00
create!(kind: 'conversation_started_on_map',
eventable: map,
map: map,
user: user)
end
private
2016-06-30 11:42:46 +08:00
# def notify_users!
# unless comment_vote.user == comment_vote.comment_user
# notify!(comment_vote.comment_user)
# end
2016-06-30 11:42:46 +08:00
# end
end