mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-26 01:38:36 +00:00
1217361b6c
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
12 lines
222 B
Elixir
12 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
|