I have two controllers: controller A and controller B and I'm calling a controller A's actions from Controller B like this:
AController.dispatch(:get, request, response)
my question is - is it a better practice to pass on a copy of the request response objects?
What is the correct way of using ActionController::dispatch method
Clarification I have to call controller B from controller A its a constraint... now the question was specifically regarding 'dispatch'...