add hint to ActionView's fields_for

This commit is contained in:
Tom Rothe 2022-01-06 12:52:54 +01:00
parent b923f70d15
commit c6cb78349a

@ -1018,9 +1018,10 @@ def form_with(model: nil, scope: nil, url: nil, format: nil, **options, &block)
# <% end %>
#
# Note that fields_for will automatically generate a hidden field
# to store the ID of the record. There are circumstances where this
# hidden field is not needed and you can pass <tt>include_id: false</tt>
# to prevent fields_for from rendering it automatically.
# to store the ID of the record if it responds to <tt>persisted?</tt>.
# There are circumstances where this hidden field is not needed and you
# can pass <tt>include_id: false</tt> to prevent fields_for from
# rendering it automatically.
def fields_for(record_name, record_object = nil, options = {}, &block)
options = { model: record_object, allow_method_names_outside_object: false, skip_default_ids: false }.merge!(options)