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
Hi folks. Given the following entity:
expose :name expose :address expose :street, safe: true do |instance, _| instance.address.street end end
If address is nil, safe: true is supposed to make street return nil instead of an exception? It's returning undefined method street for nil:NilClass.
address
nil
safe: true
street
undefined method street for nil:NilClass
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi folks. Given the following entity:
If
address
isnil
,safe: true
is supposed to makestreet
returnnil
instead of an exception? It's returningundefined method street for nil:NilClass
.The text was updated successfully, but these errors were encountered: