Passing validation arguments for the Form's underlying actions
How do I pass arguments in this line? I can't seem to find an example in the docs.
If action :create requires user_id as an argument, is it simply passed by including it in the
AshPhoenix.Form.validate(socket.assigns.form, params)If action :create requires user_id as an argument, is it simply passed by including it in the
params? like %{user_id: "12345"}