I have a form and I am trying to get it to add another parameter without
entering it in a field.
I have the form partial _form.rhtml
<%= error_messages_for ‘response’ %>
Title
<%= text_field 'response', 'title' %>
Body
<%= text_area 'response', 'body' %>
User
<%= text_field 'response', 'user' %>
Date
<%= datetime_select 'response', 'date' %>
when it goes the controller it passes all the params as
params[:response], but I want to add that params[:id] that I passed in,
I can get that to print out so I know it is there. Any suggestions?