mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
add :index_errors
option to example [ci skip]
This commit is contained in:
parent
dacfdf03d3
commit
be8bc47262
1 changed files with 2 additions and 2 deletions
|
@ -538,13 +538,13 @@
|
|||
* Add option to index errors in nested attributes
|
||||
|
||||
For models which have nested attributes, errors within those models will
|
||||
now be indexed if :index_errors is specified when defining a
|
||||
now be indexed if `:index_errors` is specified when defining a
|
||||
has_many relationship, or if its set in the global config.
|
||||
|
||||
Example:
|
||||
|
||||
class Guitar < ActiveRecord::Base
|
||||
has_many :tuning_pegs
|
||||
has_many :tuning_pegs, index_errors: true
|
||||
accepts_nested_attributes_for :tuning_pegs
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue