I just updated to Rails 4 and rails_admin is now giving me this when I try to edit anything and then hit save:
Can't mass-assign protected attributes for Opportunity: created_by_id, contact_information, sent_expiring_email
From what I read here it looks like rails_admin is not supposed to allow non-attr-accessible things to be editable but that seems to be the case.
I understand that moving to strong parameters would fix this. Is that the case? Is there a different way to fix it? Or if not can someone provide a simple explanation of how to move to strong parameters. I've tried the usual googling and reading up on it but I don't really understand what's going on and what I would need to change in my code to make the move.