How is attr_accessible used in Rails 4?

前端 未结 5 968
执笔经年
执笔经年 2020-11-22 08:36

attr_accessible seems to no longer work within my model.

What is the way to allow mass assignment in Rails 4?

5条回答
  •  心在旅途
    2020-11-22 09:07

    An update for Rails 5:

    gem 'protected_attributes' 
    

    doesn't seem to work anymore. But give:

    gem 'protected_attributes_continued'

    a try.

提交回复
热议问题