Passing objects??

Which is best practice?

Pass the model id and find it in the next action.

You could store the object in session (session[:object] = @object), but generally it's best to keep the session lightweight.

Steve