1
0
Fork 0
mirror of https://framagit.org/framasoft/mobilizon.git synced 2025-01-23 09:08:41 +00:00
mobilizon/lib/eventos_web/controllers/app_controller.ex
Thomas Citharel 92d2045735 end
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2018-01-09 17:52:26 +01:00

9 lines
164 B
Elixir

defmodule EventosWeb.AppController do
use EventosWeb, :controller
plug :put_layout, false
def app(conn, _params) do
render conn, "index.html"
end
end