I have a nested-model form with a one-to-many relationship between a class Project and class TeamMember, and in the controller, an update function like :
@project = Project.find(params[:id])
@project.update_attributes(params[:project])
Now, I'd like to set some fields that are not set in the form for some of the team members before the saving happens. I cannot use the update_attributes function as is to do so.
What would be the best way to do it ?
Thanks, Nicolas.