Skip to content

Instantly share code, notes, and snippets.

@paveltyk
Last active September 11, 2019 21:09
Show Gist options
  • Save paveltyk/2792ea37b3a1b26a6608c0d340c14c86 to your computer and use it in GitHub Desktop.
Save paveltyk/2792ea37b3a1b26a6608c0d340c14c86 to your computer and use it in GitHub Desktop.
defmodule HealthyskinWeb.SubscriptionController do
use HealthyskinWeb, :controller
def create(conn, %{"email" => email}) do
IO.inspect(email, label: "Email submitted")
send_resp(conn, 200, "")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment