Is there a way of completely disabling the MassAssignmentSecurity feature in Rails3?
We're busy with an upgrade and need to disable it for a while :)
Is there a way of completely disabling the MassAssignmentSecurity feature in Rails3?
We're busy with an upgrade and need to disable it for a while :)
In the config/application.rb
you can set the config.active_record.whitelist_attributes
to false
so you have the opposite situation, you have to blacklsit attributes that shouldnt be accessible. On the bottom line that would do what you want,...