Files
nairobi/app/models/concerns/mappable.rb
2017-09-27 14:51:35 +02:00

10 lines
190 B
Ruby

module Mappable
extend ActiveSupport::Concern
included do
has_one :map_location, dependent: :destroy
accepts_nested_attributes_for :map_location, allow_destroy: true
end
end