1
0
Fork 0
mirror of https://framagit.org/framasoft/mobilizon.git synced 2024-12-26 09:49:12 +00:00
mobilizon/lib/eventos_web/controllers/page_controller.ex

13 lines
222 B
Elixir
Raw Normal View History

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