I have this example on gist https://gist.github.com/980828
What I am doing is showing an index page of a conversation between to user_ids, so the index page filters out the right user names.
at the bottom of that page i have a reply-to box and it goes to the create action.
the create action works correctly and saves the model, but i’m trying to then go back to the index page for the conversation but i get an error as the params seem to get lost.
Instead of explicitly redirecting to the index action, you can redirect to
:back.Doing this would take the user back to the index action with the params intact.