module MongoMapper::Plugins::StrongParameters

Public Instance Methods

attributes=(attrs = {}) click to toggle source
Calls superclass method
# File lib/mongo_mapper/plugins/strong_parameters.rb, line 17
def attributes=(attrs = {})
  super sanitize_for_mass_assignment(attrs)
end
update_attributes(attrs = {}) click to toggle source
Calls superclass method
# File lib/mongo_mapper/plugins/strong_parameters.rb, line 21
def update_attributes(attrs = {})
  super sanitize_for_mass_assignment(attrs)
end
update_attributes!(attrs = {}) click to toggle source
Calls superclass method
# File lib/mongo_mapper/plugins/strong_parameters.rb, line 25
def update_attributes!(attrs = {})
  super sanitize_for_mass_assignment(attrs)
end