Skip to content

Instantly share code, notes, and snippets.

@marti1125
Created April 25, 2013 21:00
Show Gist options
  • Save marti1125/5463134 to your computer and use it in GitHub Desktop.
Save marti1125/5463134 to your computer and use it in GitHub Desktop.
create
def create
@type = Type.find(params[:type_id])
@product = @type.products.create(params[:product])
if @product.save
redirect_to :action => :show, :id => @product.id
else
render 'new'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment