# File lib/brakeman/checks/check_nested_attributes.rb, line 31 def uses_nested_attributes? active_record_models.each do |_name, model| return true if model.options[:accepts_nested_attributes_for] end false end