Module: SolidusPrototypes::Spree::PropertyPatch

Defined in:
app/patches/models/solidus_prototypes/spree/property_patch.rb

Class Method Summary collapse

Class Method Details

.prepended(base) ⇒ Object



7
8
9
10
11
12
# File 'app/patches/models/solidus_prototypes/spree/property_patch.rb', line 7

def self.prepended(base)
  base.class_eval do
    has_many :property_prototypes
    has_many :prototypes, through: :property_prototypes
  end
end