GUIDES
GUIDESDOCS
GUIDES
These docs are for v0.12. Click to read the latest docs for v0.13.

Make Response

You can return json, html and text directly.

conn |> json(%{hello: :world})
conn |> html("<html><body>body</body></html>")
conn |> text("return text")

Redirecting

You can redirect to a new url temporarily (302) or permanently (301).

conn |> redirect('/statuses')
conn |> redirect('/statuses', permanent: true)