method

escape_json_responses=

escape_json_responses=(value)
public

No documentation available.

# File actionpack/lib/action_controller/metal/renderers.rb, line 31
      def escape_json_responses=(value)
        if value
          ActionController.deprecator.warn(<<~MSG.squish)
            Setting action_controller.escape_json_responses = true is deprecated and will have no effect in Rails 8.2.
            Set it to `false`, or remove the config.
          MSG
        end
        super
      end