Remove page_*

This commit is contained in:
Mirai Kumiko 2025-06-06 16:06:24 +02:00
parent 762914c3c6
commit 182523d36d
Signed by: miraikumiko
GPG key ID: 3F178B1B5E0CB278
3 changed files with 0 additions and 41 deletions

View file

@ -1,11 +0,0 @@
defmodule NullaWeb.PageController do
use NullaWeb, :controller
def home(conn, _params) do
render(conn, :home, layout: false)
end
def profile(conn, %{"username" => _username}) do
render(conn, :profile, layout: false)
end
end