Method: Plaza::RestfulModel#update_attributes

Defined in:
lib/plaza/models/restful_model.rb

#update_attributes(attributes_hash) ⇒ Object



137
138
139
140
# File 'lib/plaza/models/restful_model.rb', line 137

def update_attributes(attributes_hash)
  self.attributes = self.attributes.merge(self.symbolize_keys(attributes_hash))
  self.save
end