Skip to content

Instantly share code, notes, and snippets.

@jtrim
Last active August 29, 2015 14:10
Show Gist options
  • Save jtrim/c696111c22b84a2d4800 to your computer and use it in GitHub Desktop.
Save jtrim/c696111c22b84a2d4800 to your computer and use it in GitHub Desktop.
defmodule MyApp.PostsController do
use Phoenix.Controller
require IEx
plug :action
def index(conn, _params) do
IEx.pry
conn |> render "index"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment