Method: ElasticRecord::Model::ClassMethods#inherited

Defined in:
lib/elastic_record/model.rb

#inherited(child) ⇒ Object



17
18
19
20
21
22
23
24
# File 'lib/elastic_record/model.rb', line 17

def inherited(child)
  super

  if child < child.base_class
    child.elastic_index = elastic_index.dup
    child.doctype = doctype.dup
  end
end