method
show_exceptions?
v6.0.0 -
Show latest stable
- Class:
ActionDispatch::Request
show_exceptions?()public
No documentation available.
# File actionpack/lib/action_dispatch/http/request.rb, line 172
def show_exceptions? # :nodoc:
# We're treating `nil` as "unset", and we want the default setting to be
# `true`. This logic should be extracted to `env_config` and calculated
# once.
!(get_header("action_dispatch.show_exceptions") == false)
end