Zeroz
Zeroz

Reputation: 125

Rails - WARNING: Can't mass-assign protected attributes

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

Answers (1)

Lee Jarvis
Lee Jarvis

Reputation: 16241

Make sure you add :group and :member to your attr_accessible call :)

Upvotes: 5

Related Questions