Skip to content

Instantly share code, notes, and snippets.

@leehambley
Created June 9, 2009 08:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leehambley/126367 to your computer and use it in GitHub Desktop.
Save leehambley/126367 to your computer and use it in GitHub Desktop.
def update
@product = Product.find(params[:id])
respond_to do |format|
if @product.update_attributes(params[:product])
flash[:notice] = 'Product was successfully updated.'
format.html { redirect_to(admin_product_path(@product)) }
format.xml do
render :nothing => true, :status => :ok
return true
end
else
format.html { render :action => "edit" }
format.xml { render :xml => @product.errors, :status => :unprocessable_entity }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment