mobilizon/lib/eventos_web/controllers/page_controller.ex
Thomas Citharel 1217361b6c fix some code style and add checks to ci
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2018-01-14 17:57:25 +01:00

13 lines
222 B
Elixir

defmodule EventosWeb.PageController do
@moduledoc """
Controller to load our webapp
"""
use EventosWeb, :controller
plug :put_layout, false
def index(conn, _params) do
render conn, "index.html"
end
end