module AssociationReflections::Concern
Public Instance Methods
create(params)
click to toggle source
Calls superclass method
# File lib/association_reflections/concern.rb, line 13 def create(params) self.association_reflections = ::AssociationReflections::Association.new(params) super end
update(params)
click to toggle source
Calls superclass method
# File lib/association_reflections/concern.rb, line 18 def update(params) self.association_reflections = ::AssociationReflections::Association.new(params) super end