Is there a way to bypass mass assignment protection?

前端 未结 3 1409
余生分开走
余生分开走 2020-12-28 16:46

I have a Rails 3 app which JSON encodes objects in order to store them in a Redis key/value store.

When I retrieve the objects, I\'m trying to decode the JSON and in

3条回答
  •  醉话见心
    2020-12-28 17:01

    You can create a user also in this way which is not doing the mass assignment.

    User.create do |user|
      user.name = "Josh"
    end
    

    You may want to put this into a method.

    new_user(name)
      User.create do |user|
        user.name = name
      end
    end
    

提交回复
热议问题