Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Last active August 18, 2017 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shankardevy/6eece9e436b6026177e5d20915a53125 to your computer and use it in GitHub Desktop.
Save shankardevy/6eece9e436b6026177e5d20915a53125 to your computer and use it in GitHub Desktop.
defmodule MangoWeb.CartController do
use MangoWeb, :controller
alias Mango.Sales
def add(conn, %{"cart" => cart_params}) do
cart = "?"
case Sales.add_to_cart(cart, cart_params) do
{:ok, _} ->
# do something on success
{:error, _} ->
# handle the failure
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment