Flowdock
method

show_exceptions?

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ActionDispatch::Request
show_exceptions?() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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".freeze) == false)
    end
Register or log in to add new notes.