Skip to content
New issue

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

Parent in result of to_params for instances of has_many #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dturnerTS
Copy link
Owner

This behavior seems incorrect in the case where belongs_to has not been set.

The parent is inserted by the fetch method of has_many_association (https://github.com/remiprev/her/blob/master/lib/her/model/associations/has_many_association.rb#L88)

I believe that the to_params method (https://github.com/remiprev/her/blob/master/lib/her/model/parse.rb#L34) should be responsible for removing the parent for the hash.

However, the class, Foo::Bar in my example, does not know its parent, Foo::User, and therefore can't tell if it should delete :user from the hash. To remedy this I'm leaning towards adding a class variable that tracks which params need to be removed by to_params. Does this sound reasonable or do you believe there is a preferable method?

@dturnerTS dturnerTS changed the title Parent is result of to_params on an instance of a has_many Parent in result of to_params for instances of has_many Jun 27, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant