What is the purpose of this Rails config setting...
config.action_controller.consider_all_requests_local = true
It's set to true by default in config/environments/development.rb.
Thanks,
Ethan
|
What is the purpose of this Rails config setting...
It's set to true by default in Thanks, Ethan |
||||
|
Non-local requests result in user-friendly error pages. Local requests, assumed to come from developers, see a more useful error message that includes line numbers and a backtrace. |
|||
|
|
config.consider_all_requests_local=– diedthreetimes Jun 17 '11 at 21:29