Module: Mongoid::Clients::StorageOptions::ClassMethods
- Defined in:
- build/mongoid-7.3/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
64 65 66 67 |
# File 'build/mongoid-7.3/lib/mongoid/clients/storage_options.rb', line 64 def self. = .dup PersistenceContext.clear(self) end |
#storage_options_defaults ⇒ Hash
Get the default storage options.
77 78 79 80 81 82 |
# File 'build/mongoid-7.3/lib/mongoid/clients/storage_options.rb', line 77 def { collection: name.collectionize.to_sym, client: :default } end |
#store_in(options) ⇒ Class
Give this model specific custom default storage options.
53 54 55 56 |
# File 'build/mongoid-7.3/lib/mongoid/clients/storage_options.rb', line 53 def store_in() Validators::Storage.validate(self, ) .merge!() end |