AyuntamientoMadrid/participacion

View on GitHub
app/models/concerns/mappable.rb

Summary

Maintainability
A
0 mins
Test Coverage
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