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
Thought this would be helpful to anyone, was facing this issue until I found out what's going on in embedded documents.
When you have Band and Photo model embedded, use cascade_callbacks: true in the embeds_many relation to trigger dragonfly's callback
cascade_callbacks: true
The text was updated successfully, but these errors were encountered:
thanks - does this answer #359?
Sorry, something went wrong.
Seems pretty close.
Without cascade_callbacks, mongoid will not trigger dragonfly's callback so the only field stored is the image_name but not uid.
No branches or pull requests
Thought this would be helpful to anyone, was facing this issue until I found out what's going on in embedded documents.
When you have Band and Photo model embedded, use
cascade_callbacks: true
in the embeds_many relation to trigger dragonfly's callbackThe text was updated successfully, but these errors were encountered: