From 695e744558560bcb1e164a7eb03c35acc075173c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Herg=C3=A8s?= Date: Tue, 12 Aug 2025 19:50:35 +0200 Subject: [PATCH] feat(user): routes and simple template --- lib/learning_phoenix_web/router.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/learning_phoenix_web/router.ex b/lib/learning_phoenix_web/router.ex index 1c1ecda..60dbb53 100644 --- a/lib/learning_phoenix_web/router.ex +++ b/lib/learning_phoenix_web/router.ex @@ -18,6 +18,7 @@ defmodule LearningPhoenixWeb.Router do pipe_through :browser get "/", PageController, :home + resources "/users", UserController end # Other scopes may use custom stacks.