From ee73b067cbbf4c018e5f218e632cc60f3c69c316 Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Mon, 30 Jan 2023 15:18:41 +0100 Subject: [PATCH] docs: Bugfixes in the tutorial (#96) --- ...g-started-with-ash-authentication-phoenix.md | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/documentation/tutorials/getting-started-with-ash-authentication-phoenix.md b/documentation/tutorials/getting-started-with-ash-authentication-phoenix.md index 6968f28..971248c 100644 --- a/documentation/tutorials/getting-started-with-ash-authentication-phoenix.md +++ b/documentation/tutorials/getting-started-with-ash-authentication-phoenix.md @@ -13,19 +13,6 @@ $ mix phx.new example --no-ecto $ cd example ``` -## Add to your application's dependencies - -```elixir -# mix.exs - -defp deps() -[ - # ... - {:ash_authentication_phoenix, "~> 1.4.6"} -] -end -``` - ## Application Dependencies We need to add the following dependencies: @@ -52,8 +39,6 @@ defmodule Example.MixProject do # ... ``` -> The `elixir_sense` line is optional but recommended for Visual Studio Code users. It provides code completion functionality. - Let's fetch everything: ```bash @@ -286,7 +271,7 @@ defmodule Example.Accounts.User do end ``` -** `lib/example/token.ex` ** +** `lib/example/accounts/token.ex` ** ```elixir defmodule Example.Accounts.Token do