2017-01-25 15:32:13 -08:00
|
|
|
# frozen_string_literal: true
|
2017-11-25 11:23:47 -08:00
|
|
|
|
2017-01-25 15:32:13 -08:00
|
|
|
module Events
|
|
|
|
class UserNotPresentOnMap < Event
|
|
|
|
# after_create :notify_users!
|
|
|
|
|
|
|
|
def self.publish!(map, user)
|
|
|
|
create!(kind: 'user_not_present_on_map',
|
|
|
|
eventable: map,
|
|
|
|
map: map,
|
|
|
|
user: user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|