Method: Mongoid::Config#register_model
- Defined in:
- lib/mongoid/config.rb
#register_model(klass) ⇒ Object
Register a model in the application with Mongoid.
119 120 121 122 123 |
# File 'lib/mongoid/config.rb', line 119 def register_model(klass) LOCK.synchronize do models.push(klass) unless models.include?(klass) end end |