Files
nairobi/app/models/concerns/mappable.rb
Javi Martín 8befe55ba1 Remove obsolete feature_maps? method
It isn't used since commit c34aa5412.
2022-05-03 12:56:08 +02:00

9 lines
212 B
Ruby

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