Skip to content

Instantly share code, notes, and snippets.

@ralfting
Created August 6, 2019 14:25
Show Gist options
  • Save ralfting/b70c914b9114b76943e8b2a42152aa92 to your computer and use it in GitHub Desktop.
Save ralfting/b70c914b9114b76943e8b2a42152aa92 to your computer and use it in GitHub Desktop.
if already_on_cart
redirect_to checkout_path
# return render js: "toastr.warning('Este item já está em seu carrinho de compras.')"
elsif user_signed_in? && current_user.owns?(@product)
return render js: "toastr.warning('Aparentemente você já adquiriu este item.')"
else
@shopping_cart.add(@product, @product.cost)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment