clifinger
Hello,
I need Help!
I am totally new with Ash and I want to do a login action with a password verification,
Should I do an action or a function in my module ?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
zachdaniel
There are numerous examples in the ash documentation on defining custom actions, please take a look at those. As for authentication specifically, see README — ash_authentication v4.14.1
clifinger
Yes for Ash authentication, but for now I like to understand what I am I doing for learning purpose.
So I made user ressource and a custom register function with Argon2 and it’s work fine.
My question is about login, should I make a custom read action?
For now I did something dirty but working :
clifinger
Again, I don’t want to use Ash_Authentication for now, this is the way I learn
zachdaniel
Understood. Your original question had very little context. If you clarify more about your question up front you’ll get clearer answers in general.
In AshAuthentication what we do is make a read action with a preparation that adds an after action hook with
Ash.Query.after_actionif a user is returned then we check the password. If it doesn’t match then we set the result to{:ok, []}otherwise we return the result as is. When no users are returned we do a dummy password check to protect against timing attacks.With that read action, if you pass in the username and password (which will be an argument) and a user is returned, you know that it’s safe to log them in.
clifinger
Yes, sorry about the context, I will try to be more explicit next time
This one work for login, but now I try to add the validation like the preparation documentation and I don’t see any error in my form.
Please, Can you give me a validation example in the preparation ?
zachdaniel
If you want to see an error in your form, return an error with a
fieldon itclifinger
I love the work you did and I am sure for “normal” crud operation it’s so powerful.
But for a simple read action, it’s too much frustration…
If I do
Ash.Query.add_error(query, field: :email, message: "is invalid"):Maybe I will wait the documentation is more mature, because it’s so hard to too do simple things like a simple read action with validation.
My suggestion is to have exactly the same options for read as the other actions, if I do
create :loginmy form worked fine and also my login action. Just I don’t like to make a create action with no mutation …clifinger
I am slower than when I dev in Rust
zachdaniel
Definitely not a suggestion to make a create action with no mutation. It wouldn’t work anyway
I understand if you’d rather not use it, but my suggestion is not to let small hurdles like this put you off
We work every day based on conversations like this one to make the docs and UX better. Despite how it may seem, Ash is for far more than “normal” crud
It is a very expansive framework and there are lots of places that need some docs love, but its not an indicator of the utility of the framework itself
The common theme among our users is slow to get started, massively productive down the road. If you don’t have time to learn a new thing w/ new patterns then it may not be a good idea to use Ash. It isn’t for everyone, some users don’t enjoy working this way, to each their own, no judgement 
In this case, we added shorthand for creating errors on actions in the way that I described, I was just mistaken that the shorthand had also been applied to read actions.
I’ve released
v3.4.56addressing this, and now the example call toAsh.Query.add_error/2should work.clifinger
I’m fully aware of the work you’ve accomplished, and I believe I’ve gone through almost all your talks on YouTube. I’m going to give myself a little more time, about two more days, before making a final decision. I’m not saying this out of ego, but because I need to make a decisive choice for the company where I work as CTO, which leans towards a more full TypeScript/Node.js stack.
What reassures me is your availability and, of course, all the hard work you’ve put in so far. However, to be completely transparent and honest, I genuinely think the documentation has gaps. I won’t hesitate to contribute once I’m ready myself.
Thank you again for your response!