From 2d7d40a2d3be332f03b9f4e3485b389a0de6ca2d Mon Sep 17 00:00:00 2001 From: Simon Hansen Date: Tue, 30 Jul 2024 20:29:17 +0200 Subject: [PATCH 1/2] Bump version in installation guide --- guides/get_started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/get_started/installation.md b/guides/get_started/installation.md index a2901f95..c6918a02 100644 --- a/guides/get_started/installation.md +++ b/guides/get_started/installation.md @@ -12,7 +12,7 @@ In your `mix.exs`: defp deps do [ ... - {:backpex, "~> 0.5.1"} + {:backpex, "~> 0.6.0"} ] end ``` From 615e845b54dbe234d8aeff02ac6eb3b9854818fd Mon Sep 17 00:00:00 2001 From: Simon Hansen Date: Tue, 30 Jul 2024 20:52:05 +0200 Subject: [PATCH 2/2] Update installation.md --- guides/get_started/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guides/get_started/installation.md b/guides/get_started/installation.md index c6918a02..82416536 100644 --- a/guides/get_started/installation.md +++ b/guides/get_started/installation.md @@ -209,7 +209,7 @@ You have to do this step only once in your router file, so if you already added import Backpex.Router -scope "/admin", DemoWeb do +scope "/admin", MyAppWeb do pipe_through :browser # add this line @@ -230,7 +230,7 @@ We use a live session to add the init assigns to all LiveViews in the `/admin` s import Backpex.Router -scope "/admin", DemoWeb do +scope "/admin", MyAppWeb do pipe_through :browser backpex_routes() @@ -250,7 +250,7 @@ To make the LiveResource accessible in your application, you need to add routes import Backpex.Router -scope "/admin", DemoWeb do +scope "/admin", MyAppWeb do pipe_through :browser backpex_routes()