module Elastictastic::Dirty::EmbeddedDocumentMethods

Attributes

nesting_association[W]
nesting_document[W]

Public Instance Methods

attribute_may_change!(field) click to toggle source
Calls superclass method
# File lib/elastictastic/dirty.rb, line 108
def attribute_may_change!(field)
  if @nesting_document
    @nesting_document.attribute_may_change!(@nesting_association) do
      super
    end
  else
    super
  end
end