Rails - WARNING: Cannot Assign Protected Attributes

Continuing here: Rails - problems with forms , every time I try to create a new one group_membership, I get the following: WARNING: Can't mass-assign protected attributes: group, memberin my log, and the identifier is added empty.

Made changes to attr_accessiblemy models, but there is still no solution.

Thanks in advance.

+3
source share
1 answer

Make sure you have added :groupand :memberto call attr_accessible:)

+5
source

All Articles