I have to pass 2 objects to show so I tried to put this
respond_with(@ticketnfr, @ticket)
but it goes to ticket controller view,
when I tried with only one object
respond_with(@ticketnfr)
it goes correctly to ticketnfr/show, but I miss the ticket params,
I also tried to put the location
respond_with(@ticketnfr, @ticket. :location => ticketnfr_path)
but it goes to the index instead of show
how to pass both of the objects but still going to the ticketnfr/show?