Method: Mongoid::Config#models

Defined in:
lib/mongoid/config.rb

#modelsArray<Class>

Get all the models in the application - this is everything that includes Mongoid::Document.

Examples:

Get all the models.

config.models

Returns:

  • (Array<Class>)

    All the models in the application.

Since:

  • 3.1.0


107
108
109
# File 'lib/mongoid/config.rb', line 107

def models
  @models ||= []
end