Current section

Files

Jump to
phoenix priv templates new web controllers page_controller.ex
Raw

priv/templates/new/web/controllers/page_controller.ex

defmodule <%= application_module %>.PageController do
use <%= application_module %>.Web, :controller
plug :action
def index(conn, _params) do
render conn, "index.html"
end
end