Reputation: 125
Continuing from here: Rails - Form problems, everytime I try to create a new group_membership
I get this: WARNING: Can't mass-assign protected attributes: group, member
at my log and the ID's are added blank.
Have been making changes to the attr_accessible
of my models but so far no solution.
Thanks in advance.
Upvotes: 3
Views: 2723
Reputation: 16241
Make sure you add :group
and :member
to your attr_accessible
call :)
Upvotes: 5