Module: Mongoid::Clients::StorageOptions::ClassMethods
- Defined in:
- lib/mongoid/clients/storage_options.rb
Instance Method Summary collapse
-
#reset_storage_options! ⇒ Object
Reset the store_in options.
-
#storage_options_defaults ⇒ Hash
Get the default storage options.
-
#store_in(options) ⇒ Class
Give this model specific custom default storage options.
Instance Method Details
#reset_storage_options! ⇒ Object
Reset the store_in options
59 60 61 62 |
# File 'lib/mongoid/clients/storage_options.rb', line 59 def self. = .dup PersistenceContext.clear(self) end |
#storage_options_defaults ⇒ Hash
Get the default storage options.
70 71 72 73 74 75 |
# File 'lib/mongoid/clients/storage_options.rb', line 70 def { collection: name.collectionize.to_sym, client: :default } end |
#store_in(options) ⇒ Class
Give this model specific custom default storage options.
50 51 52 53 |
# File 'lib/mongoid/clients/storage_options.rb', line 50 def store_in() Validators::Storage.validate(self, ) .merge!() end |