Rails 4 strong parameters with custom nested attributes name Rails 4 strong parameters with custom nested attributes name json json

Rails 4 strong parameters with custom nested attributes name


Just alter your params before it's called/used by any of your actions:

before_action do  params[:special_settings_attributes] ||= params.delete :special_settingsend