I would like to know how to integrate both of this gems(devise + Strong Parameters), since strong params will likely be added to the rails core in 4.0
any help is welcome thanks
|
I would like to know how to integrate both of this gems(devise + Strong Parameters), since strong params will likely be added to the rails core in 4.0 any help is welcome thanks |
||||
|
|
|
After adding both gems, devise will work as normal. However, if you use the safety feature requiring explicitly whitelisting tainted parameters in the user model:
Then you need the changes found at https://gist.github.com/3350730 which overrides some of the controllers. |
||||
|
|