mirror of
https://codeberg.org/JasterV/intisync.ex.git
synced 2026-04-26 18:10:07 +00:00
9 lines
230 B
Elixir
9 lines
230 B
Elixir
defmodule IntisyncWeb.PageController do
|
|
use IntisyncWeb, :controller
|
|
|
|
def home(conn, _params) do
|
|
# The home page is often custom made,
|
|
# so skip the default app layout.
|
|
render(conn, :home, layout: false)
|
|
end
|
|
end
|