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
required_fields
I'm using the following module definition:
defmodule RequiredTest do use Domo @enforce_keys [:required] defstruct [:required, :optional] @type t :: %__MODULE__{required: integer(), optional: integer() | nil} end
In Domo 1.5.16, RequiredTest.required_fields() returns [:required, :optional], causing downstream problems e.g. for changeset validation.
RequiredTest.required_fields()
[:required, :optional]
RequiredTest.required_fields() should return [:required] like it does in Domo 1.5.14
[:required]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
Actual behavior
I'm using the following module definition:
In Domo 1.5.16,
RequiredTest.required_fields()
returns[:required, :optional]
, causing downstream problems e.g. for changeset validation.Expected behavior
RequiredTest.required_fields()
should return[:required]
like it does in Domo 1.5.14The text was updated successfully, but these errors were encountered: