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