Skip to content

Instantly share code, notes, and snippets.

@patrickberkeley
Created September 15, 2009 03:17
Show Gist options
  • Save patrickberkeley/187086 to your computer and use it in GitHub Desktop.
Save patrickberkeley/187086 to your computer and use it in GitHub Desktop.
def update_multiple
@items = Item.find(params[:item_ids])
@items.each do |item|
item.update_attributes!(params[:item].reject { |k,v| v.blank? })
end
flash[:notice] = "Updated items!"
redirect_to items_path
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment