formatting and add for/you routes

This commit is contained in:
2021-11-18 19:44:25 -05:00
parent f46981e5a4
commit 050248e82b
6 changed files with 49 additions and 24 deletions

View File

@@ -6,6 +6,14 @@ defmodule EntenduWeb.LinkController do
use EntenduWeb, :controller
def just(conn, _params) do
render(conn, "just.html")
render(conn, "just.html")
end
def for(conn, _params) do
render(conn, "for.html")
end
def you(conn, _params) do
render(conn, "you.html")
end
end