Strong Parameters requires whitelisting of Action Controller parameters by default.
I have a functioning Rails 3 app that uses has_many :through associations which is not, as I remake it as …
ruby-on-rails arrays strong-parametersI've got a pretty simple question. But haven't found a solution so far. So here's the JSON string I send …
ruby-on-rails ruby-on-rails-4 nested-attributes strong-parametersWith the recent upgrade to Rails 4, updating attributes using code resembling the below does not work, I get a ActiveModel::…
ruby-on-rails ruby-on-rails-4 activemodel attr-accessible strong-parametersI'm building a web app with Rails 4 strong parameters. When building the admin back office controllers, I wonder what is …
ruby-on-rails ruby-on-rails-3 strong-parametersIn Rails 3, it was possible to insert an attribute into params like so: params[:post][:user_id] = current_user.id …
ruby-on-rails strong-parametersI make a http put request with following parameters: {"post"=>{"files"=>{"file1"=>"file_content_1", "file2"=>"file_…
ruby-on-rails strong-parametersI was playing around with Rails 4.x beta and trying to get nested attributes working with carrierwave. Not sure if …
ruby-on-rails ruby ruby-on-rails-4 strong-parametersI have an array field in my model and I'm attempting to update it. My strong parameter method is below …
ruby-on-rails ruby ruby-on-rails-4 strong-parametersIs there a way in strong parameters to permit all attributes of a nested_attributes model? Here is a sample …
ruby-on-rails ruby ruby-on-rails-3.2 ruby-on-rails-4 strong-parametersI'm having trouble getting a has_many :through association working with Rails 4's strong parameters. I have a model called …
activerecord many-to-many ruby-on-rails-4 strong-parameters