permitted属性をtrueに設定
適応バージョン
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
permitted属性をtrueに設定
使い方
permit!()
例
class Person < ActiveRecord::Base
end
params = ActionController::Parameters.new(name: "Francesco")
params.permitted? #=> false
Person.new(params) #=> ActiveModel::ForbiddenAttributesError
params.permit!
params.permitted? #=> true
Person.new(params) #=> #<Person id: nil, name: "Francesco">