Following this guide:
Issue #1
Authentication section of user.ex from the guide looks like this:
authentication do
strategies do
password :password do
identity_field :email
end
end
tokens do
token_resource Example.Accounts.Token
signing_secret Example.Accounts.Secrets
end
end
When trying to compile this error is given:
Compiling 23 files (.ex)
** (EXIT from pid<0.98.0>) an exception was raised:
** (Spark.Error.DslError) [nil]
authentication → tokens → enabled?:
The:passwordauthentication strategy requires tokens be enabled.To fix this error you can either:
- disable the
:passwordstrategy, or- enable tokens.
I think the tokens section needs:
enabled? true
Issue #2
This link to the LiveView docs doesn’t work
Issue #3
Should use domain instead of api
I’m not sure how to issue a PR for Ash HQ though since I don’t know where HQ sources the guides.
























