Please help rails problem with stringify_keys error
- by richard moss
I have been trying to solve this for ages and can't figure it out.
I have a form like so (taking out a lot of other fields)
<% form_for @machine_enquiry, machine_enquiry_path(@machine_enquiry) do|me_form| %>
<% me_form.fields_for :messages_attributes do |f| %>
<%= f.text_field :title -%>
<% end %>
<%=…