2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
2017-11-25 19:23:47 +00:00
|
|
|
|
2017-01-24 00:30:13 +00:00
|
|
|
module Events
|
|
|
|
class UserPresentOnMap < Event
|
|
|
|
# after_create :notify_users!
|
2016-04-26 12:08:12 +00:00
|
|
|
|
2017-01-24 00:30:13 +00:00
|
|
|
def self.publish!(map, user)
|
|
|
|
create!(kind: 'user_present_on_map',
|
|
|
|
eventable: map,
|
|
|
|
map: map,
|
|
|
|
user: user)
|
|
|
|
end
|
2016-04-26 12:08:12 +00:00
|
|
|
end
|
|
|
|
end
|