Initial Commit

This commit is contained in:
bluepython508
2023-11-01 17:27:15 +00:00
commit 45e4e9f5da
929 changed files with 5425 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
defmodule SsoBsnWeb.PageController do
use SsoBsnWeb, :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