I have many models like Entity, person, stuff, box. All of them in controller Create action has this code @entity = Entity.new(entity_params.merge(user: current_user)).
This code makes perfect association when I make each new Model record. But when I fill nested form from Entity.controller only Entity gets user_id association. All other person, stuff ... has NULL on user_id field.
Don't know how to make this work!