We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
drop_param
Is your feature request related to a problem? Please describe. Ecto has drop_param. (https://hexdocs.pm/ecto/Ecto.Changeset.html#cast_assoc/3-custom-actions) I want to do same thing with Ash, but I can't.
Ecto
Describe the solution you'd like Same or similar to Ecto's.
Describe alternatives you've considered I can workaround with update_form.
update_form
AshPhoenix.Form.update_form(form, parent_path, fn form -> params = AshPhoenix.Form.params(form) new_params = modify_params(params) AshPhoenix.Form.validate(form, new_params) end)
The text was updated successfully, but these errors were encountered:
drop_params
👍 this is on the short list of things to add.
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
Ecto
hasdrop_param
. (https://hexdocs.pm/ecto/Ecto.Changeset.html#cast_assoc/3-custom-actions) I want to do same thing with Ash, but I can't.Describe the solution you'd like
Same or similar to Ecto's.
Describe alternatives you've considered
I can workaround with
update_form
.The text was updated successfully, but these errors were encountered: