mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-23 09:08:41 +00:00
92d2045735
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
9 lines
164 B
Elixir
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
|