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
For example, using the following params:
params do requires :type, type: Atom, values: [:record] group :data, type: Map do requires :name, type: String, regexp: ~r"^[a-zA-Z0-9\-\.]+$" requires :type, type: String, regexp: ~r"^[a-zA-Z0-9]+$" end end
Submitting this:
{data: %{name: "www", type: "a"}, type: "record"}
Will result with the following parameters:
%{data: %{name: "www", type: "record"}, type: :record}
The expected result is:
%{data: %{name: "www", type: "a"}, type: :record}
The text was updated successfully, but these errors were encountered:
Thank you. I guess the reason of the problem is the param :type, I'll fix this as soon as possible.
:type
Sorry, something went wrong.
65e0345
No branches or pull requests
For example, using the following params:
Submitting this:
Will result with the following parameters:
The expected result is:
The text was updated successfully, but these errors were encountered: